From 4e62053b4555e8602e50f56367370997ac6d53bd Mon Sep 17 00:00:00 2001 From: ekzyis Date: Wed, 12 Mar 2025 17:25:09 -0500 Subject: [PATCH] Fix saloon replies The query will return { replyCost: null } if no sub was found because of the left join. --- api/paidAction/itemCreate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/paidAction/itemCreate.js b/api/paidAction/itemCreate.js index fb4ae550..b8e8f416 100644 --- a/api/paidAction/itemCreate.js +++ b/api/paidAction/itemCreate.js @@ -27,8 +27,8 @@ export async function getBaseCost ({ models, bio, parentId, subName }) { LEFT JOIN "Sub" s ON s.name = COALESCE(r."subName", i."subName") WHERE i.id = ${Number(parentId)}` - if (!sub) return DEFAULT_ITEM_COST - return satsToMsats(sub.replyCost) + if (sub?.replyCost) return satsToMsats(sub.replyCost) + return DEFAULT_ITEM_COST } const sub = await models.sub.findUnique({ where: { name: subName } })