fix for settings not being persisted in store

This commit is contained in:
Akinwale Ariwodola 2018-04-04 17:29:19 +01:00
parent 76dee67e9a
commit c0818b056d

View file

@ -2,10 +2,7 @@ import { ACTIONS } from 'lbry-redux';
const reducers = {};
const defaultState = {
clientSettings: {
keepDaemonRunning: true,
showNsfw: false
}
clientSettings: {}
};
reducers[ACTIONS.CLIENT_SETTING_CHANGED] = (state, action) => {