diff --git a/backend/src/Web/Features/Contents/EventHandlers/StripeAccountConfiguredHandler.cs b/backend/src/Web/Features/Contents/EventHandlers/StripeAccountConfiguredHandler.cs index af735c7..43e604c 100644 --- a/backend/src/Web/Features/Contents/EventHandlers/StripeAccountConfiguredHandler.cs +++ b/backend/src/Web/Features/Contents/EventHandlers/StripeAccountConfiguredHandler.cs @@ -28,7 +28,7 @@ public class StripeAccountConfiguredHandler( return; } - creator.AcceptDonation = true; + creator.AcceptDonation = !string.IsNullOrWhiteSpace(eventModel.StripeAccountId); var rows = await dbContext.SaveChangesAsync(ct);