Bug fixes

This commit is contained in:
Mathias Wagner
2024-05-21 23:09:37 +02:00
parent 983251a756
commit bd10f519c4

View File

@@ -122,7 +122,7 @@ module.exports.exportConfig = async () => {
let configValues = await config.findAll();
for (let i = 0; i < configValues.length; i++) {
if (configValues[i].key === "password") continue;
if (configValues[i].key === "password" || configValues[i].key === "interface") continue;
obj.config[configValues[i].key] = configValues[i].value;
}