Merge pull request #59 from lbryio/persist-settings

fix for settings not being persisted in store
This commit is contained in:
akinwale 2018-04-09 14:38:58 -04:00 committed by GitHub
commit 0f454b562d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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) => {