Skip to content
Snippets Groups Projects
Commit f28ba3df authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

Limit reply filtering to home and public

parent 950ae6d8
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,9 @@ const fetchAndUpdate = ({
args['userId'] = userId
args['tag'] = tag
args['withMuted'] = !hideMutedPosts
if (loggedIn) args['replyVisibility'] = replyVisibility
if (loggedIn && ['friends', 'public', 'publicAndExternal'].includes(timeline)) {
args['replyVisibility'] = replyVisibility
}
const numStatusesBeforeFetch = timelineData.statuses.length
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment