We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In spite of what the nodemcu doco says, it appears that filenames > 27 characters (not 32) cause file.open to throw a panic.
Utterly knucklehead patch attached; httpserver.lua.patch.txt
The text was updated successfully, but these errors were encountered:
The docs to my knowledge don't say but it's 31 chars, not 32. See nodemcu/nodemcu-firmware#1114 for details.
31 - ".lua".len() = 27?
Sorry, something went wrong.
No, these files didn't have extensions.
The filenames were truncated MD5 hashes under the http/ pseudo directory.
e.g. http/5f4dcc3b5aa765d61d8327 (27 chars) worked but http/5f4dcc3b5aa765d61d8327d (28 chars) caused a panic.
No branches or pull requests
In spite of what the nodemcu doco says, it appears that filenames > 27 characters (not 32) cause file.open to throw a panic.
Utterly knucklehead patch attached;
httpserver.lua.patch.txt
The text was updated successfully, but these errors were encountered: