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