diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index 36b762a9d..fb80b16d7 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -116,20 +116,20 @@ function ClaimListDiscover(props: Props) { // For more than 20, drop it down to 6 months // This helps with timeout issues for users that are following a ton of stuff // https://github.com/lbryio/lbry-sdk/issues/2420 - if (options.channel_ids.length > 10 || options.any_tags.length > 10) { - options.release_time = `>${Math.floor( - moment() - .subtract(1, TIME_YEAR) - .startOf('week') - .unix() - )}`; - } else if (options.channel_ids.length > 20 || options.any_tags.length > 20) { + if (options.channel_ids.length > 20 || options.any_tags.length > 20) { options.release_time = `>${Math.floor( moment() .subtract(6, TIME_MONTH) .startOf('week') .unix() )}`; + } else if (options.channel_ids.length > 10 || options.any_tags.length > 10) { + options.release_time = `>${Math.floor( + moment() + .subtract(1, TIME_YEAR) + .startOf('week') + .unix() + )}`; } }