mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-15 11:05:08 +00:00
[Webserver] Fix serving CSS
I made an error in previous commit for this PR
This commit is contained in:
@@ -125,7 +125,7 @@ bool fileExists(const String& fname) {
|
||||
const String patched_fname = patch_fname(fname);
|
||||
auto search = Cache.fileExistsMap.find(patched_fname);
|
||||
if (search != Cache.fileExistsMap.end()) {
|
||||
return search->second >= 0;
|
||||
return search->second;
|
||||
}
|
||||
int size = -1;
|
||||
if (ESPEASY_FS.exists(patched_fname)) {
|
||||
|
||||
Reference in New Issue
Block a user