-
-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
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
Stat function decodes the non-encoded filename #221
Comments
perry-mitchell
added a commit
that referenced
this issue
Oct 15, 2020
Released as 3.6.1 - Thanks @gijskant! |
Thank you very much for your fast response! And thanks for maintaining such a useful library! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
stat
function does aPROPFIND
request to the server and then parses the XML data in the response. At that stage, the filename that was given to thestat
function as parameter (not encoded) is normalised (see stat.js), which includes url-decoding the name.This causes a failure when the filename contains a
%
character.The url-decoding happens in url.js and was added in response to #68.
The text was updated successfully, but these errors were encountered: