We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24eccbf commit 3b478f0Copy full SHA for 3b478f0
crates/ark/src/url.rs
@@ -79,7 +79,7 @@ fn uppercase_windows_drive_in_uri(mut uri: Url) -> Url {
79
let upper = drive.to_ascii_uppercase();
80
81
if drive != upper {
82
- let new_path = format!("/{upper}{}", &path[2..]);
+ let new_path = format!("/{upper}:{}", &path[3..]);
83
uri.set_path(&new_path);
84
}
85
0 commit comments