From c53f831b3cbaadf1bacb7c4592faf35ff6528011 Mon Sep 17 00:00:00 2001 From: Krystie Date: Mon, 25 May 2026 02:55:20 -0700 Subject: [PATCH] Fix: remove payment_method argument from generate_receipt() call The generate_receipt() function doesn't accept a payment_method parameter, causing all donations to fail silently. Removed the extra argument. --- fjccv_webhook.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fjccv_webhook.py b/fjccv_webhook.py index 74a4d74..df2fc17 100644 --- a/fjccv_webhook.py +++ b/fjccv_webhook.py @@ -347,8 +347,7 @@ def _process_checkout_session(session, donor_name, donor_email, amount, transact amount=amount, date_str=date_str, donation_number=donation_number, - transaction_id=transaction_id, - payment_method="Stripe" + transaction_id=transaction_id ) if not receipt_pdf: