You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
webdav4 keeps crashing if the file path contains certain special characters.
Examples would be:
A folder with a whitespace at the end of the foldername - 'Example '.
A folder or file containing #, or % in the name - 'Zimmer #309'
The issue is missing url quotation. Calling urllib.parse.quote() on the path variable fixes the issue.
I think that this should be builtin, as the function does not provide url encoded names, but requires them.
If you do not want to built it in, this should at least be documented.
The text was updated successfully, but these errors were encountered:
Hi there,
webdav4 keeps crashing if the file path contains certain special characters.
Examples would be:
The issue is missing url quotation. Calling urllib.parse.quote() on the path variable fixes the issue.
I think that this should be builtin, as the function does not provide url encoded names, but requires them.
If you do not want to built it in, this should at least be documented.
The text was updated successfully, but these errors were encountered: