diff --git a/goodtimes/webhook/payment_processing_service.py b/goodtimes/webhook/payment_processing_service.py index ce0284b..30906c8 100644 --- a/goodtimes/webhook/payment_processing_service.py +++ b/goodtimes/webhook/payment_processing_service.py @@ -88,6 +88,7 @@ class PaymentProcessingService: try: txn = Transaction.objects.get(order_id=order_id) txn.transaction_status = TransactionStatus.FAIL + txn.save() return except Transaction.DoesNotExist: txn = self.create_transaction()