Closed
Description
... as a result, I never get a 404 error.
The underlying problem seems to be that a SPIFFS File object does not evaluate as false if it cannot be opened.
This diff for RequestHandlersImpl.h fixes it for me.
116c116
< if (!f)
---
> if (!f || !f.available())