From 33c325031d49fdcd5a23957a06846eb6dec98cc2 Mon Sep 17 00:00:00 2001 From: zeppi Date: Thu, 25 Mar 2021 15:53:07 -0400 Subject: [PATCH] check simplesite for notifications --- ui/redux/actions/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/redux/actions/app.js b/ui/redux/actions/app.js index 8113c7f6c..2e69506fa 100644 --- a/ui/redux/actions/app.js +++ b/ui/redux/actions/app.js @@ -6,7 +6,7 @@ import { ipcRenderer, remote } from 'electron'; import path from 'path'; import * as ACTIONS from 'constants/action_types'; import * as MODALS from 'constants/modal_types'; -import { DOMAIN } from 'config'; +import { DOMAIN, SIMPLE_SITE } from 'config'; import { Lbry, doBalanceSubscribe, @@ -541,7 +541,7 @@ export function doSignIn() { return (dispatch, getState) => { const state = getState(); const user = selectUser(state); - const notificationsEnabled = user.experimental_ui; + const notificationsEnabled = SIMPLE_SITE || user.experimental_ui; if (notificationsEnabled) { dispatch(doNotificationSocketConnect());