diff --git a/ui/redux/actions/app.js b/ui/redux/actions/app.js index 5ac5c0d40..90e68d3ac 100644 --- a/ui/redux/actions/app.js +++ b/ui/redux/actions/app.js @@ -485,7 +485,7 @@ export function doGetAndPopulatePreferences() { // @if TARGET='app' const { settings, sharing_3P: sharing3P } = savedPreferences.value; Object.entries(settings).forEach(([key, val]) => { - if (daemonSettings[key] !== val) { + if (val !== null && daemonSettings[key] !== val) { dispatch(doSetDaemonSetting(key, val, true)); } });