From 24b840be875d05f9745185a29260625517d0509e Mon Sep 17 00:00:00 2001 From: p11 Date: Tue, 18 Jul 2023 22:02:29 +0200 Subject: [PATCH] Allow underscores for spaces --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b293b39..50b0fa8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -89,7 +89,7 @@ impl Context { } else { percent_decode_str(&relative_path[1..]) .decode_utf8_lossy() - .to_string() + .replace('_', " ") }; let (pk_file, pki_file, start_level) = if !relative_path.is_empty() { path.push(&relative_path);