Skip to content

Commit

Permalink
Fix payment verify task
Browse files Browse the repository at this point in the history
  • Loading branch information
Suryansh5545 committed Aug 21, 2023
1 parent 7208259 commit 928a50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/transactions/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def check_all_transaction_status():
ticket.is_active = False
ticket.save()
else:
ticket.payment_status = order["status"]
ticket.transaction_id.payment_status = order["status"]
ticket.save()
if ticket.is_active == True:
ticket.is_active = False
Expand Down

0 comments on commit 928a50e

Please sign in to comment.