Fixed donations checkout for logged-off readers (#17589)

closes https://github.com/TryGhost/Product/issues/3663
This commit is contained in:
Sag 2023-08-03 22:45:57 +02:00 committed by GitHub
parent 19bdb0efef
commit 7e9b2d4883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -519,7 +519,7 @@ module.exports = class StripeAPI {
},
metadata,
customer: customer ? customer.id : undefined,
customer_email: customer ? undefined : customerEmail,
customer_email: !customer && customerEmail ? customerEmail : undefined,
submit_type: 'donate',
invoice_creation: {
enabled: true,