From fd08d18e6944849e7ae52ab58e834ff34c65bf57 Mon Sep 17 00:00:00 2001 From: dj1an Date: Mon, 21 Jun 2021 18:21:18 +0200 Subject: [PATCH] Change Errormessage when config is missing Change Filename in Error Message when missing tracker.json config File --- src/LoRa_APRS_Tracker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index 4dd109d..6c3a3e9 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -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) {} }