Skip to content

Commit

Permalink
Fix #2246 - Switch org param to query icontains vs contains
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeacom committed Sep 19, 2018
1 parent a454e08 commit c068836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dashboard/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_queryset(self):
if 'org' in param_keys:
org = self.request.query_params.get('org')
url = f"https://github.com/{org}"
queryset = queryset.filter(github_url__contains=url)
queryset = queryset.filter(github_url__icontains=url)

# Retrieve all fullfilled bounties by fulfiller_username
if 'fulfiller_github_username' in param_keys:
Expand Down

0 comments on commit c068836

Please sign in to comment.