From 50bbf519d6f8f9f8ecfcbb56a1205c6b3c79344e Mon Sep 17 00:00:00 2001 From: girst Date: Fri, 12 Jun 2020 13:18:39 +0200 Subject: [PATCH] fix webhook error loggin m( one. job. --- app/webhooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webhooks.py b/app/webhooks.py index ce39cd1..aeca679 100755 --- a/app/webhooks.py +++ b/app/webhooks.py @@ -53,7 +53,7 @@ def websub_post(timestamp, nonce, subject, sig): update_channel(conn, request.data) except: with open('/tmp/websub-subscriptions.err', 'a') as f: - f.write(f"\n{xmlfeed}\n") + f.write(f"\n{request.data}\n") return '', 200 if __name__ == '__main__': -- 2.39.3