From cb9ec93695afb141f74384b95e19f48003048a90 Mon Sep 17 00:00:00 2001 From: Lukas Bockstaller Date: Mon, 10 Aug 2026 16:32:31 +0200 Subject: [PATCH] revert BasePayment extension --- src/pretix/plugins/paypal2/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pretix/plugins/paypal2/views.py b/src/pretix/plugins/paypal2/views.py index b1d172bccb..163f28890b 100644 --- a/src/pretix/plugins/paypal2/views.py +++ b/src/pretix/plugins/paypal2/views.py @@ -344,6 +344,8 @@ def webhook(request, *args, **kwargs): event_body = request.body.decode('utf-8').strip() event_json = json.loads(event_body) + return HttpResponse(status=500) + # V1/V2 Sorting -- Start if 'event_type' not in event_json: return HttpResponse("Invalid body, no event_type given", status=400)