backend: fix quotes lint in thread-muting/create.ts
All checks were successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
Norm 2022-09-23 23:02:39 -04:00
parent 7c1491a109
commit f35b856dfa
Signed by: 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,
});