Skip to content

Commit

Permalink
Minor: Adds a fix for yasserg#448 from yasserg#449
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Jan 24, 2022
1 parent 3922aef commit fdb14e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private static Url parseUrl(final String spec) {
// location/login (<net_loc>) of the URL.
locationEndIndex = endIndex;
} else if (startIndex < endIndex) {
url.path = spec.substring(startIndex, endIndex);
url.path = spec.substring(startIndex, endIndex).replaceAll("\\\\", "/");
}
// Set the network location/login (<net_loc>) of the URL.
if ((locationStartIndex >= 0) && (locationEndIndex >= 0)) {
Expand Down

0 comments on commit fdb14e0

Please sign in to comment.