From bd10f519c4eecad5e2485ac9fd6679a5ef2c8684 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 21 May 2024 23:09:37 +0200 Subject: [PATCH] Bug fixes --- server/controller/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/controller/config.js b/server/controller/config.js index a0a0c083..120d1017 100644 --- a/server/controller/config.js +++ b/server/controller/config.js @@ -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; }