commit
0f57f894b2
1 changed files with 3 additions and 2 deletions
|
@ -34,6 +34,7 @@ import {
|
||||||
selectModal,
|
selectModal,
|
||||||
selectAllowAnalytics,
|
selectAllowAnalytics,
|
||||||
} from 'redux/selectors/app';
|
} from 'redux/selectors/app';
|
||||||
|
import { selectDaemonSettings } from 'redux/selectors/settings';
|
||||||
import { doAuthenticate, doGetSync } from 'lbryinc';
|
import { doAuthenticate, doGetSync } from 'lbryinc';
|
||||||
import { lbrySettings as config, version as appVersion } from 'package.json';
|
import { lbrySettings as config, version as appVersion } from 'package.json';
|
||||||
import analytics from 'analytics';
|
import analytics from 'analytics';
|
||||||
|
@ -477,7 +478,7 @@ export function doGetAndPopulatePreferences() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
function successCb(savedPreferences) {
|
function successCb(savedPreferences) {
|
||||||
const state = getState();
|
const state = getState();
|
||||||
const { daemonSettings } = state;
|
const daemonSettings = selectDaemonSettings(state);
|
||||||
|
|
||||||
if (savedPreferences !== null) {
|
if (savedPreferences !== null) {
|
||||||
dispatch(doPopulateSharedUserState(savedPreferences));
|
dispatch(doPopulateSharedUserState(savedPreferences));
|
||||||
|
@ -485,7 +486,7 @@ export function doGetAndPopulatePreferences() {
|
||||||
const { settings, sharing_3P: sharing3P } = savedPreferences.value;
|
const { settings, sharing_3P: sharing3P } = savedPreferences.value;
|
||||||
Object.entries(settings).forEach(([key, val]) => {
|
Object.entries(settings).forEach(([key, val]) => {
|
||||||
if (daemonSettings[key] !== val) {
|
if (daemonSettings[key] !== val) {
|
||||||
dispatch(doSetDaemonSetting(key, val, false));
|
dispatch(doSetDaemonSetting(key, val, true));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (sharing3P !== undefined) {
|
if (sharing3P !== undefined) {
|
||||||
|
|
Loading…
Reference in a new issue