Skip to content

Commit

Permalink
fix(backend): FTT無効時にユーザーリストタイムラインが使用できない問題を修正 (#14878)
Browse files Browse the repository at this point in the history
* fix: return getfromdb when FanoutTimeline is not enabled

* Update Changelog

* fix

---------

Co-authored-by: Lhc_fl <[email protected]>
  • Loading branch information
kakkokari-gtyih and Lhcfl authored Nov 6, 2024
1 parent a896c39 commit b1c8221
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/706)
- Fix: 連合への配信時に、acctの大小文字が区別されてしまい正しくメンションが処理されないことがある問題を修正
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/711)
- Fix: FTT無効時にユーザーリストタイムラインが使用できない問題を修正
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/709)

### Misskey.js
- Fix: Stream初期化時、別途WebSocketを指定する場合の型定義を修正
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-

this.activeUsersChart.read(me);

await this.noteEntityService.packMany(timeline, me);
return await this.noteEntityService.packMany(timeline, me);
}

const timeline = await this.fanoutTimelineEndpointService.timeline({
Expand Down

0 comments on commit b1c8221

Please sign in to comment.