From 80f06c1a9aad675f85d4d812dd774c4b16ab012e Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Wed, 25 Aug 2021 22:45:12 +0800 Subject: [PATCH] Fix 'bighits' vs 'big_hits' ## Issue - #6840 Clean up https://odysee.com/$/big_hits - `/big_hits` is being indexed and unnecessarily affecting the speed score (the "not found" page is surprisingly slow; will handle separately) - Big-Hits metadata not working ## Notes 'big_hits' is only used in v1 homepages. --- ui/constants/pages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/constants/pages.js b/ui/constants/pages.js index eb1d836ec..e2a099bbf 100644 --- a/ui/constants/pages.js +++ b/ui/constants/pages.js @@ -7,7 +7,7 @@ exports.AUTH_WALLET_PASSWORD = 'walletpassword'; exports.BACKUP = 'backup'; exports.CHANNEL = 'channel'; exports.DISCOVER = 'discover'; -exports.BIG_HITS = 'big_hits'; +exports.BIG_HITS = 'bighits'; exports.MOVIES = 'movies'; exports.MUSIC = 'music'; exports.COMMUNITY = 'community';