From b112bf11c2ff239e51fd2b004dc7d8a359de2a11 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 26 Aug 2026 18:07:12 +0300 Subject: [PATCH] fix reply visibility timelines --- src/stores/fetchers/timeline_fetcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/fetchers/timeline_fetcher.js b/src/stores/fetchers/timeline_fetcher.js index 54250318f..5737befef 100644 --- a/src/stores/fetchers/timeline_fetcher.js +++ b/src/stores/fetchers/timeline_fetcher.js @@ -46,7 +46,7 @@ const timelineFetcher = (timeline, argument, credentials) => { } args.withMuted = !hideMutedPosts - if (loggedIn && REPLY_VISIBILITY_TIMELINES.has(timeline)) { + if (loggedIn && REPLY_VISIBILITY_TIMELINES.has(timeline.name)) { args.replyVisibility = replyVisibility }