backend: fix quotes lint in thread-muting/create.ts

This commit is contained in:
Norm 2022-09-23 23:02:39 -04:00
parent 7c1491a109
commit f35b856dfa
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

View file

@ -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,
});