This commit is contained in:
syuilo 2020-03-23 19:42:26 +09:00
parent e25dea27e7
commit 833c39969b

View file

@ -28,15 +28,15 @@ export default define(meta, async (ps, user) => {
const [favorite, watching] = await Promise.all([ const [favorite, watching] = await Promise.all([
NoteFavorites.count({ NoteFavorites.count({
where: { where: {
userId: user.id, userId: user.id,
noteId: ps.noteId noteId: ps.noteId
}, },
take: 1 take: 1
}), }),
NoteWatchings.count({ NoteWatchings.count({
where: { where: {
userId: user.id, userId: user.id,
noteId: ps.noteId noteId: ps.noteId
}, },
take: 1 take: 1
}) })