From 752763d227e2d6986d3b7476eaccca0ce593e248 Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Fri, 10 Jul 2026 10:39:04 +0300 Subject: [PATCH] fix: merge --- lnbits/core/services/notifications.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lnbits/core/services/notifications.py b/lnbits/core/services/notifications.py index bed83e842..c8749df7f 100644 --- a/lnbits/core/services/notifications.py +++ b/lnbits/core/services/notifications.py @@ -16,6 +16,7 @@ from lnbits.core.crud import ( get_webpush_subscriptions_for_user, mark_webhook_sent, ) +from lnbits.core.db import core_app_extra from lnbits.core.crud.users import get_user from lnbits.core.crud.wallets import get_wallet from lnbits.core.models import Payment, Wallet @@ -244,6 +245,7 @@ async def dispatch_payment_notification(payment: Payment) -> None: wallet = await get_wallet(payment.wallet_id) if wallet: await send_payment_notification(wallet, payment) + await core_app_extra.dispatch_extension_invoice_paid(payment) async def dispatch_webhook(payment: Payment):