diff options
| author | anatawa12 <anatawa12@icloud.com> | 2025-04-15 16:15:27 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-15 16:15:27 +0900 |
| commit | b2e3e658965b52873dd6771cf9771b3032a0ed15 (patch) | |
| tree | 07fd7e80e539ebf134934fe3862a0d24e141e738 /packages/backend/src/core/FanoutTimelineEndpointService.ts | |
| parent | feat: render quote note with `quote-inline` class for ap compatibility (#15818) (diff) | |
| download | sharkey-b2e3e658965b52873dd6771cf9771b3032a0ed15.tar.gz sharkey-b2e3e658965b52873dd6771cf9771b3032a0ed15.tar.bz2 sharkey-b2e3e658965b52873dd6771cf9771b3032a0ed15.zip | |
fix: use ftt for outbox (#15819)
* fix: use ftt for outbox
* chore: check for enableFanoutTimeline
* lint: fix lint
Diffstat (limited to 'packages/backend/src/core/FanoutTimelineEndpointService.ts')
| -rw-r--r-- | packages/backend/src/core/FanoutTimelineEndpointService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/FanoutTimelineEndpointService.ts b/packages/backend/src/core/FanoutTimelineEndpointService.ts index b05af99c5e..ce8cc83dfd 100644 --- a/packages/backend/src/core/FanoutTimelineEndpointService.ts +++ b/packages/backend/src/core/FanoutTimelineEndpointService.ts @@ -54,7 +54,7 @@ export class FanoutTimelineEndpointService { } @bindThis - private async getMiNotes(ps: TimelineOptions): Promise<MiNote[]> { + async getMiNotes(ps: TimelineOptions): Promise<MiNote[]> { // 呼び出し元と以下の処理をシンプルにするためにdbFallbackを置き換える if (!ps.useDbFallback) ps.dbFallback = () => Promise.resolve([]); |