From 3c956735cf4cb9b7f982a9fa71fd66341df20589 Mon Sep 17 00:00:00 2001 From: amianthus <49116958+SirTenzin@users.noreply.github.com> Date: Thu, 18 Dec 2025 11:24:17 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20checkout5,=20checkout6,?= =?UTF-8?q?=20checkout8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../attach/attachFunctions/addProductFlow/handlePaidProduct.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/internal/customers/attach/attachFunctions/addProductFlow/handlePaidProduct.ts b/server/src/internal/customers/attach/attachFunctions/addProductFlow/handlePaidProduct.ts index ce8f49d9b..6ba0df16e 100644 --- a/server/src/internal/customers/attach/attachFunctions/addProductFlow/handlePaidProduct.ts +++ b/server/src/internal/customers/attach/attachFunctions/addProductFlow/handlePaidProduct.ts @@ -213,7 +213,7 @@ export const handlePaidProduct = async ({ const subInvoice: Stripe.Invoice | undefined = (sub.latest_invoice as Stripe.Invoice) - if(subInvoice && subInvoice.status === "open") { + if(subInvoice && subInvoice.status === "open" && !config.invoiceCheckout) { logger.info( `[update subscription] invoice action required: ${subInvoice.id}`, );