Skip to content
Snippets Groups Projects
Commit 83067fe5 authored by Fabian Krüger's avatar Fabian Krüger
Browse files

fixed minor issue

parent a9be74fe
No related branches found
No related tags found
No related merge requests found
...@@ -371,7 +371,7 @@ class TransferLogic: ...@@ -371,7 +371,7 @@ class TransferLogic:
TransferLogic.__updateSenderMoney(sender, amount) TransferLogic.__updateSenderMoney(sender, amount)
TransferLogic.__updateReceiverMoney(receiver, amount) TransferLogic.__updateReceiverMoney(receiver, amount)
except IntegrityError: except IntegrityError:
return list(Transfers.objects.filter(token=token))[0] return list(Transfer.objects.filter(token=token))[0]
return transfer_id return transfer_id
@staticmethod @staticmethod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment