From f6e255d9be01d9921170544d69896dc15994601c Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sat, 3 Jul 2021 15:39:58 -0300 Subject: [PATCH] remove one extra core.schema. --- lnbits/core/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/core/tasks.py b/lnbits/core/tasks.py index b05909a28..fa2df9645 100644 --- a/lnbits/core/tasks.py +++ b/lnbits/core/tasks.py @@ -66,7 +66,7 @@ async def dispatch_webhook(payment: Payment): async def mark_webhook_sent(payment: Payment, status: int) -> None: await db.execute( """ - UPDATE core.apipayments SET webhook_status = ? + UPDATE apipayments SET webhook_status = ? WHERE hash = ? """, (status, payment.payment_hash),