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
Backslashes in paths get left as-is. They should be percent-encoded to %5C. Currently that backslash would change to a forward-slash if the output were to be stringified and re-parsed with Url::parse(). See the following roundtrip:
Also affects
Url::from_directory_path()
.Backslashes in paths get left as-is. They should be percent-encoded to
%5C
. Currently that backslash would change to a forward-slash if the output were to be stringified and re-parsed withUrl::parse()
. See the following roundtrip:Expected:
On Windows they get swapped to forward-slashes, which is correct for Windows.
The text was updated successfully, but these errors were encountered: