Change Errormessage when config is missing

Change Filename in Error Message when missing tracker.json config File
This commit is contained in:
dj1an 2021-06-21 18:21:18 +02:00 committed by GitHub
parent c16d6e4367
commit fd08d18e69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,8 +310,8 @@ void load_config()
Config = confmg.readConfiguration();
if(Config.callsign == "NOCALL-10")
{
logPrintlnE("You have to change your settings in 'data/is-cfg.json' and upload it via \"Upload File System image\"!");
show_display("ERROR", "You have to change your settings in 'data/is-cfg.json' and upload it via \"Upload File System image\"!");
logPrintlnE("You have to change your settings in 'data/tracker.json' and upload it via \"Upload File System image\"!");
show_display("ERROR", "You have to change your settings in 'data/tracker.json' and upload it via \"Upload File System image\"!");
while(true)
{}
}