Skip to content

Commit

Permalink
fix en flowprovider
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed Dec 18, 2024
1 parent 386c234 commit 752c887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_payments_chile/FlowProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def process_data(self, payment, request) -> JsonResponse:
"""
if "token" not in request.POST:
raise HttpResponseBadRequest("token no está en post")
return HttpResponseBadRequest("token no está en post")

if payment.status in [PaymentStatus.WAITING, PaymentStatus.PREAUTH]:
self.actualiza_estado(payment=payment)
Expand Down

0 comments on commit 752c887

Please sign in to comment.