Skip to content

Commit

Permalink
Update api_v1.py
Browse files Browse the repository at this point in the history
  • Loading branch information
guoshijiang authored Mar 17, 2024
1 parent 4479934 commit 087baaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/airdrop/api_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_reward_info(request):
def get_project_interactions(request):
params = json.loads(request.body.decode())
language = params.get("language", "en")
pi_lists = ProjectInterAction.objects.filter(language=language).all()
pi_lists = ProjectInterAction.objects.filter(language=language).order_by("id").all()
projects_ret_lists = []
social_ret_list = []
for pl in pi_lists:
Expand Down

0 comments on commit 087baaf

Please sign in to comment.