Skip to content

Commit

Permalink
Merge pull request #220 from anatawa12/vmimi-relay-timeline/forks/nirila
Browse files Browse the repository at this point in the history
fix withReplies for VRTL
  • Loading branch information
anatawa12 authored Aug 4, 2024
2 parents 935f58d + 4f69bd8 commit 24fe1c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-VRTL.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
VRTLのブランチで行われた変更点をまとめています

<!-- VV Please add changelog here VV -->
- fic(frontend): VRTL VSTLでリプライのトグルが表示されない問題 (anatawa12#92) - 2024/08/04

-- 2024.7.0-kinel.1 --

Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/timelines.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function availableBasicTimelines(): BasicTimelineType[] {
}

export function hasWithReplies(timeline: BasicTimelineType | undefined | null): boolean {
return timeline === 'local' || timeline === 'social';
return timeline === 'local' || timeline === 'social' || timeline === 'vmimi-relay' || timeline === 'vmimi-relay-social';
}

export function hasWithLocalOnly(timeline: BasicTimelineType | undefined | null): boolean {
Expand Down

0 comments on commit 24fe1c9

Please sign in to comment.