Merge pull request #1963 from stackernews/fix-item-cost

Fix item cost in details
This commit is contained in:
Keyan 2025-03-10 20:03:48 -05:00 committed by GitHub
commit 9aad2fd903
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 11 deletions

View File

@ -20,18 +20,15 @@ export async function getBaseCost ({ models, bio, parentId, subName }) {
if (parentId) {
// the subname is stored in the root item of the thread
const parent = await models.item.findFirst({
where: { id: Number(parentId) },
include: {
root: { include: { sub: true } },
sub: true
}
})
const [sub] = await models.$queryRaw`
SELECT s."replyCost"
FROM "Item" i
LEFT JOIN "Item" r ON r.id = i."rootId"
LEFT JOIN "Sub" s ON s.name = COALESCE(r."subName", i."subName")
WHERE i.id = ${Number(parentId)}`
const root = parent.root ?? parent
if (!root.sub) return DEFAULT_ITEM_COST
return satsToMsats(root.sub.replyCost)
if (!sub) return DEFAULT_ITEM_COST
return satsToMsats(sub.replyCost)
}
const sub = await models.sub.findUnique({ where: { name: subName } })

View File

@ -108,6 +108,7 @@ export const ITEM_FULL_FIELDS = gql`
moderated
meMuteSub
meSubscription
replyCost
}
}
forwards {