doSignIn: cleanup, no functional change

Seems unlikely that we'll need to disable notifications, so cleaned up the code a bit.
This commit is contained in:
infinite-persistence 2021-11-15 11:20:47 +08:00 committed by infinite-persistence
parent 6546eaeb63
commit 342fcb4024

View file

@ -9,7 +9,7 @@ import * as MODALS from 'constants/modal_types';
import * as SETTINGS from 'constants/settings'; import * as SETTINGS from 'constants/settings';
import * as DAEMON_SETTINGS from 'constants/daemon_settings'; import * as DAEMON_SETTINGS from 'constants/daemon_settings';
import * as SHARED_PREFERENCES from 'constants/shared_preferences'; import * as SHARED_PREFERENCES from 'constants/shared_preferences';
import { DOMAIN, SIMPLE_SITE } from 'config'; import { DOMAIN } from 'config';
import Lbry from 'lbry'; import Lbry from 'lbry';
import { doFetchChannelListMine, doFetchCollectionListMine, doCheckPendingClaims } from 'redux/actions/claims'; import { doFetchChannelListMine, doFetchCollectionListMine, doCheckPendingClaims } from 'redux/actions/claims';
import { selectClaimForUri, selectClaimIsMineForUri, selectMyChannelClaims } from 'redux/selectors/claims'; import { selectClaimForUri, selectClaimIsMineForUri, selectMyChannelClaims } from 'redux/selectors/claims';
@ -543,20 +543,12 @@ export function doSignIn() {
pushNotifications.validate(user.id); pushNotifications.validate(user.id);
} }
const notificationsEnabled = SIMPLE_SITE || user.experimental_ui; dispatch(doNotificationSocketConnect(true));
dispatch(doNotificationList());
dispatch(doNotificationSocketConnect(notificationsEnabled));
if (notificationsEnabled) {
dispatch(doNotificationList());
}
dispatch(doCheckPendingClaims()); dispatch(doCheckPendingClaims());
// @if TARGET='web'
dispatch(doBalanceSubscribe()); dispatch(doBalanceSubscribe());
dispatch(doFetchChannelListMine()); dispatch(doFetchChannelListMine());
dispatch(doFetchCollectionListMine()); dispatch(doFetchCollectionListMine());
// @endif
}; };
} }