forked from FoundKeyGang/FoundKey
Merge PR 'backend: Fix thread muting queries' (#175)
Reviewed-on: FoundKeyGang/FoundKey#175 Changelog: Fixed
This commit is contained in:
commit
7c1491a109
3 changed files with 3 additions and 3 deletions
|
@ -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']),
|
||||
|
|
|
@ -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']),
|
||||
|
|
|
@ -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']),
|
||||
|
|
Loading…
Reference in a new issue