Skip to content

Commit 93682a6

Browse files
committed
fix
1 parent fbaf6df commit 93682a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

url/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3103,7 +3103,7 @@ fn file_url_segments_to_pathbuf_windows(
31033103
use percent_encoding::percent_decode_str;
31043104
let mut string = String::with_capacity(estimated_capacity);
31053105
if let Some(host) = host {
3106-
string.push('\\');
3106+
string.push_str(r"\\");
31073107
string.push_str(host);
31083108
} else {
31093109
let first = segments.next().ok_or(())?;

0 commit comments

Comments
 (0)