Merge PR 'backend: Fix thread muting queries' (#175)

Reviewed-on: FoundKeyGang/FoundKey#175
Changelog: Fixed
This commit is contained in:
Norm 2022-09-23 22:59:45 -04:00
commit 7c1491a109
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE
3 changed files with 3 additions and 3 deletions

View file

@ -137,7 +137,7 @@ export default define(meta, paramDef, async (ps, user) => {
});
// check if this thread and notification type is muted
const threadMuted = await NoteThreadMutings.findOne({
const threadMuted = await NoteThreadMutings.findOneBy({
userId: note.userId,
threadId: note.threadId || note.id,
mutingNotificationTypes: ArrayOverlap(['pollVote']),

View file

@ -58,7 +58,7 @@ export default async function(user: CacheableUser, note: Note, choice: number) {
});
// check if this thread and notification type is muted
const muted = await NoteThreadMutings.findOne({
const muted = await NoteThreadMutings.findOneBy({
userId: note.userId,
threadId: note.threadId || note.id,
mutingNotificationTypes: ArrayOverlap(['pollVote']),

View file

@ -99,7 +99,7 @@ export default async (user: { id: User['id']; host: User['host']; }, note: Note,
});
// check if this thread is muted
const threadMuted = await NoteThreadMutings.findOne({
const threadMuted = await NoteThreadMutings.findOneBy({
userId: note.userId,
threadId: note.threadId || note.id,
mutingNotificationTypes: ArrayOverlap(['reaction']),