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
History.js is throwing a JS error under some conditions.
History.unescapeString function keeps decoding URLs on a while block using window.decodeURI. This function throws an error if an invalid %xx URLencoded character is provided. This means that any folder with a %xx substring on it is likely to make it fail.
Steps to reproduce on FILEman:
Go to backend and create a %dabug directory.
Refresh the whole browser page.
Delete the folder.
Create the same folder.
You should get a Uncaught URIError: URI malformed error and the submit box doesn't get closed.
The text was updated successfully, but these errors were encountered:
History.js is throwing a JS error under some conditions.
History.unescapeString function keeps decoding URLs on a while block using window.decodeURI. This function throws an error if an invalid %xx URLencoded character is provided. This means that any folder with a %xx substring on it is likely to make it fail.
Steps to reproduce on FILEman:
You should get a Uncaught URIError: URI malformed error and the submit box doesn't get closed.
The text was updated successfully, but these errors were encountered: