diff --git a/esp32_marauder/EvilPortal.cpp b/esp32_marauder/EvilPortal.cpp index c55b783..f97c4a2 100644 --- a/esp32_marauder/EvilPortal.cpp +++ b/esp32_marauder/EvilPortal.cpp @@ -68,10 +68,10 @@ bool EvilPortal::setHtml() { File html_file = sd_obj.getFile("/" + this->target_html_name); if (!html_file) { #ifdef HAS_SCREEN - this->sendToDisplay("Could not find /index.html."); + this->sendToDisplay("Could not find /" + this->target_html_name); this->sendToDisplay("Touch to exit..."); #endif - Serial.println("Could not find /index.html. Use stopscan..."); + Serial.println("Could not find /" + this->target_html_name + ". Use stopscan..."); return false; } else {