diff options
| author | dakkar <dakkar@thenautilus.net> | 2023-12-04 14:26:37 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2023-12-04 14:26:37 +0000 |
| commit | 216d1779974512effe8218949aceb8da21a1a549 (patch) | |
| tree | a7e89914e0d5eabcbda44032d500bfda39ae0cab /packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts | |
| parent | prettier query for bubble timeline (diff) | |
| download | sharkey-216d1779974512effe8218949aceb8da21a1a549.tar.gz sharkey-216d1779974512effe8218949aceb8da21a1a549.tar.bz2 sharkey-216d1779974512effe8218949aceb8da21a1a549.zip | |
fix the spacing
thanks, linter
Diffstat (limited to 'packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts')
| -rw-r--r-- | packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts b/packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts index 4b326a4ee4..c5e3a5a5f7 100644 --- a/packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts +++ b/packages/backend/src/server/api/endpoints/notes/bubble-timeline.ts @@ -79,7 +79,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint- ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate) .andWhere('note.visibility = \'public\'') .andWhere('note.channelId IS NULL') - .andWhere('note.userHost IN (:...hosts)', { hosts: instance.bubbleInstances}) + .andWhere('note.userHost IN (:...hosts)', { hosts: instance.bubbleInstances }) .innerJoinAndSelect('note.user', 'user') .leftJoinAndSelect('note.reply', 'reply') .leftJoinAndSelect('note.renote', 'renote') |