Fix item cost in details

This commit is contained in:
ekzyis 2025-03-10 17:48:36 -05:00
parent 3a93b04e07
commit 65b1db23a7

View File

@ -30,8 +30,14 @@ export async function getBaseCost ({ models, bio, parentId, subName }) {
const root = parent.root ?? parent const root = parent.root ?? parent
if (!root.sub) return DEFAULT_ITEM_COST // XXX Prisma does not support case-insensitive joins on CITEXT column
return satsToMsats(root.sub.replyCost) // so we fetch the territory in a separate query
const sub = await models.sub.findUnique({
where: { name: root.subName }
})
if (!sub) return DEFAULT_ITEM_COST
return satsToMsats(sub.replyCost)
} }
const sub = await models.sub.findUnique({ where: { name: subName } }) const sub = await models.sub.findUnique({ where: { name: subName } })