This commit is contained in:
syuilo 2020-11-14 09:59:33 +09:00
parent 637fe8a04b
commit abb3d2a8d9

View file

@ -253,7 +253,7 @@ export const store = createStore({
init(state, x) {
for (const [key, value] of Object.entries(defaultDeviceUserSettings)) {
if (x[key]) {
if (Object.prototype.hasOwnProperty.call(x, key)) {
state[key] = x[key];
} else {
state[key] = value;
@ -471,7 +471,7 @@ export const store = createStore({
init(state, x) {
for (const [key, value] of Object.entries(defaultSettings)) {
if (x[key]) {
if (Object.prototype.hasOwnProperty.call(x, key)) {
state[key] = x[key];
} else {
state[key] = value;