fix hasPoll check in bubble-timeline.ts

This commit is contained in:
Hazelnoot 2025-06-02 17:31:09 -04:00
parent d4ea917869
commit 0ccbb8f3cf

View file

@ -106,7 +106,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
.orWhere('note.text IS NOT NULL')
.orWhere('note.cw IS NOT NULL')
.orWhere('note.replyId IS NOT NULL')
.orWhere('note.hasPoll = false')
.orWhere('note.hasPoll = true')
.orWhere('note.fileIds != \'{}\'')));
}
//#endregion