Skip to content

Commit

Permalink
Update website/api/views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnieBLT authored Nov 10, 2024
1 parent 2f6f99e commit 959183b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ def filter(self, request, *args, **kwargs):
if freshness:
projects = projects.filter(freshness__icontains=freshness)
if stars:
projects = projects.filter(stars__gte(stars)
projects = projects.filter(stars__gte=stars)
if forks:
projects = projects.filter(forks__gte(forks)
if tags:
Expand Down

0 comments on commit 959183b

Please sign in to comment.