Don't print "Not found" for missing web files anymore

People seem to get confused by that so whatever
This commit is contained in:
Stefan Kremser 2018-10-10 18:41:39 +02:00
parent 899e4b3e9b
commit ad9694a472
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ bool handleFileRead(String path) {
else if (SPIFFS.exists(wifi_config_path + path + str(W_DOT_GZIP))) path = wifi_config_path + path + str(
W_DOT_GZIP);
else {
prntln(W_NOT_FOUND);
// prntln(W_NOT_FOUND);
return false;
}
}