Fixed setting loading

This commit is contained in:
Samuel Elliott 2018-02-12 19:23:35 +00:00
parent f085364760
commit cc1aee6842
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export default class {
if (!set) continue;
for (let newCategory of newSet.settings) {
let category = this.settings.find(c => c.category === newCategory.category);
let category = set.settings.find(c => c.category === newCategory.category);
if (!category) continue;
for (let newSetting of newCategory.settings) {