1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

hotfix for bw switches

This commit is contained in:
NoobishSVK
2024-03-24 19:40:56 +01:00
parent 3e91f65ce8
commit e0a963c3e4

View File

@@ -56,7 +56,7 @@ router.get('/', (req, res) => {
tuningUpperLimit: serverConfig.webserver.tuningUpperLimit,
chatEnabled: serverConfig.webserver.chatEnabled,
device: serverConfig.device,
bwSwitch: serverConfig.bwSwitch || false
bwSwitch: serverConfig.bwSwitch ? serverConfig.bwSwitch : false
});
}
});