mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
fixing missing string in config
This commit is contained in:
parent
5a8afeb25e
commit
aeef66a338
|
|
@ -89,7 +89,9 @@ void ProjectConfigurationManagement::readProjectConfiguration(DynamicJsonDocumen
|
|||
}
|
||||
if (data.containsKey("syslog")) {
|
||||
conf.syslog.active = data["syslog"]["active"] | true;
|
||||
if (data["syslog"].containsKey("server")) {
|
||||
conf.syslog.server = data["syslog"]["server"].as<String>();
|
||||
}
|
||||
conf.syslog.port = data["syslog"]["port"] | 514;
|
||||
}
|
||||
if (data.containsKey("ntp_server"))
|
||||
|
|
|
|||
Loading…
Reference in a new issue