Skip to content
Snippets Groups Projects

Fix #898 and #900 Limit reply filtering to home and public timelines

Merged Shpuld Shpludson requested to merge fix/reply-filtering-limit-to-friends-public into develop
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading