Skip to content

Commit

Permalink
[FIX] Fix request dispacher in mailgun webhhok
Browse files Browse the repository at this point in the history
  • Loading branch information
maq-adhoc committed Jul 13, 2023
1 parent b8b05f9 commit 7c537f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mail_tracking_mailgun/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def mail_tracking_mailgun_webhook(self):
# See https://documentation.mailgun.com/en/latest/user_manual.html#routes
try:
self._mail_tracking_mailgun_webhook_verify(
**request.jsonrequest["signature"]
**request.dispatcher.jsonrequest["signature"]
)
except ValidationError as error:
raise NotAcceptable from error
Expand Down

0 comments on commit 7c537f6

Please sign in to comment.