forked from FoundKeyGang/FoundKey
backend: fix quotes lint in thread-muting/create.ts
This commit is contained in:
parent
7c1491a109
commit
f35b856dfa
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ export default define(meta, paramDef, async (ps, user) => {
|
|||
});
|
||||
|
||||
// remove all note watchings in the muted thread
|
||||
const notesThread = Notes.createQueryBuilder("notes")
|
||||
.select("note.id")
|
||||
const notesThread = Notes.createQueryBuilder('notes')
|
||||
.select('note.id')
|
||||
.where({
|
||||
threadId: note.threadId ?? note.id,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue