Skip to content

Commit

Permalink
Fixes #1404
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Jun 8, 2018
1 parent 428344d commit ed36f25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/dashboard/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1459,9 +1459,9 @@ def get_who_works_with(self, work_type='collected', network='mainnet'):
if work_type == 'funded':
obj = self.bounties_funded.filter(network=network)
elif work_type == 'collected':
obj = self.get_fulfilled_bounties()
obj = self.get_fulfilled_bounties(network=network)
elif work_type == 'org':
obj = self.get_orgs_bounties()
obj = self.get_orgs_bounties(network=network)

if work_type != 'org':
profiles = [bounty.org_name for bounty in obj if bounty.org_name]
Expand Down

0 comments on commit ed36f25

Please sign in to comment.