fix(settings): merging the wrong settings source

This commit is contained in:
fallenbagel
2024-05-31 21:20:12 +05:00
parent 8384d411ba
commit 226d451adf

View File

@@ -670,7 +670,7 @@ class Settings {
delete parsedJson.jellyfin.hostname;
}
this.data = merge(this.data, settings);
this.data = merge(this.data, parsedJson);
this.save();
}