Allow underscores for spaces
This commit is contained in:
parent
44a244c3c1
commit
24b840be87
@ -89,7 +89,7 @@ impl Context {
|
|||||||
} else {
|
} else {
|
||||||
percent_decode_str(&relative_path[1..])
|
percent_decode_str(&relative_path[1..])
|
||||||
.decode_utf8_lossy()
|
.decode_utf8_lossy()
|
||||||
.to_string()
|
.replace('_', " ")
|
||||||
};
|
};
|
||||||
let (pk_file, pki_file, start_level) = if !relative_path.is_empty() {
|
let (pk_file, pki_file, start_level) = if !relative_path.is_empty() {
|
||||||
path.push(&relative_path);
|
path.push(&relative_path);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user