backend: Fix thread muting queries

findOne != findOneBy
This commit is contained in:
Michcio 2022-09-25 15:07:28 +02:00
parent 87f1b0cabc
commit 2bb8642a2c
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']),