Skip to content

Commit

Permalink
fix: V[RS]TL doesn't have withReplies toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 authored Aug 4, 2024
1 parent 18ebf1c commit 6099d9e
Showing 1 changed file with 1 addition and 1 deletion.
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 6099d9e

Please sign in to comment.