Skip to content

Commit

Permalink
fix pinned count (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
LanternNassi committed Jul 5, 2024
1 parent 4ccd453 commit 463e0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def get(self, user_id):
status='success',
data=dict(
pagination={**pagination_meta_data,
'pinned_count': len(pinned_projects)},
'pinned_count': len(json.loads(pinned_projects))},
pinned=json.loads(pinned_projects),
projects=json.loads(user_projects),
)
Expand Down

0 comments on commit 463e0c7

Please sign in to comment.