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
The problem seems to occur when trying to list the content of a directory where there's a + (plus) in a filename.
Comparing with another webdav server which seems to work (rclone), I see that rclone does not escape the + to %2B in the d:href field, and rclone does not send the d:displayname field (so no &add; escape is present).
Somewhere on a mega-webdav fs mount, issue:
mkdir test
cd test
touch "test.txt"
ls
touch "+.txt"
ls
The text was updated successfully, but these errors were encountered:
create a new folder via webdav; the folder-name should have a + inside the name
try to open the new folder via webdav result:
The folder was created (see via web-interface), but if a folder with a + exists, the webdav no longer can access norlist this level of subdirectories.
The problem seems to occur when trying to list the content of a directory where there's a
+
(plus) in a filename.Comparing with another webdav server which seems to work (rclone), I see that rclone does not escape the
+
to%2B
in thed:href
field, and rclone does not send thed:displayname
field (so no&add;
escape is present).Somewhere on a mega-webdav fs mount, issue:
The text was updated successfully, but these errors were encountered: