Skip to content

Commit bd10f51

Browse files
committed
Bug fixes
1 parent 983251a commit bd10f51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/controller/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ module.exports.exportConfig = async () => {
122122

123123
let configValues = await config.findAll();
124124
for (let i = 0; i < configValues.length; i++) {
125-
if (configValues[i].key === "password") continue;
125+
if (configValues[i].key === "password" || configValues[i].key === "interface") continue;
126126
obj.config[configValues[i].key] = configValues[i].value;
127127
}
128128

0 commit comments

Comments
 (0)