From 2e7e14b83cf35659ce49ada2c98d9419744565f2 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Wed, 15 Dec 2021 13:56:04 +0800 Subject: [PATCH] Disable ads in Wild West until ads fail more gracefully ## Issue - Log out - Wild West - Click "Show more livestreams" - Click "Show less livestreams" (top-right corner) - Crash --- ui/page/discover/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/page/discover/view.jsx b/ui/page/discover/view.jsx index 72124ea88..bda8dafdd 100644 --- a/ui/page/discover/view.jsx +++ b/ui/page/discover/view.jsx @@ -194,7 +194,7 @@ function DiscoverPage(props: Props) { } React.useEffect(() => { - if (isAuthenticated || !SHOW_ADS) { + if (isAuthenticated || !SHOW_ADS || window.location.pathname === `/$/${PAGES.WILD_WEST}`) { return; }