We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 983251a commit bd10f51Copy full SHA for bd10f51
server/controller/config.js
@@ -122,7 +122,7 @@ module.exports.exportConfig = async () => {
122
123
let configValues = await config.findAll();
124
for (let i = 0; i < configValues.length; i++) {
125
- if (configValues[i].key === "password") continue;
+ if (configValues[i].key === "password" || configValues[i].key === "interface") continue;
126
obj.config[configValues[i].key] = configValues[i].value;
127
}
128
0 commit comments