From 4f17615291eabc16563dcef07410216997f9e726 Mon Sep 17 00:00:00 2001 From: k00b Date: Wed, 19 Mar 2025 11:48:36 -0500 Subject: [PATCH] fix expireBoost boolean condition --- worker/expireBoost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/expireBoost.js b/worker/expireBoost.js index 815157a4..e46898b2 100644 --- a/worker/expireBoost.js +++ b/worker/expireBoost.js @@ -14,7 +14,7 @@ export async function expireBoost ({ data: { id }, models }) { FROM "ItemAct" WHERE act = 'BOOST' AND "itemId" = ${Number(id)}::INTEGER - AND "invoiceActionState" IS NULL OR "invoiceActionState" = 'PAID' + AND ("invoiceActionState" IS NULL OR "invoiceActionState" = 'PAID') ) UPDATE "Item" SET boost = COALESCE(boost.cur_msats, 0) / 1000, "oldBoost" = COALESCE(boost.old_msats, 0) / 1000