Skip to content

Commit

Permalink
♻️ Better local support for WebConfig.save
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Jul 16, 2024
1 parent 02484e4 commit ccd1f28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/script/webConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,7 @@ export default class WebConfig extends Config {

let unusedSplitKeys = [];
keys.forEach((key) => {
if (key == 'syncLargeKeys') {
// syncLargeKeys is always stored in local storage
if (this.Class._localOnlyKeys.includes(key)) {
localData[key] = this[key];
} else if (this.Class._largeKeys.includes(key)) {
if (this.syncLargeKeys) {
Expand Down

0 comments on commit ccd1f28

Please sign in to comment.