From 733e7729521adb02e94c78f8b5a68dea14004a2a Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 5 Dec 2019 11:30:48 -0500 Subject: [PATCH] put back user check I removed for a hotfix --- ui/component/app/view.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/component/app/view.jsx b/ui/component/app/view.jsx index 5f01d3fc6..e7c286e67 100644 --- a/ui/component/app/view.jsx +++ b/ui/component/app/view.jsx @@ -175,9 +175,9 @@ function App(props: Props) { // Require an internal-api user on lbry.tv // This also prevents the site from loading in the un-authed state while we wait for internal-apis to return for the first time // It's not needed on desktop since there is no un-authed state - // if (!user) { - // return null; - // } + if (!user) { + return null; + } // @endif return (