mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 15:41:17 +00:00
fix query splitting
This commit is contained in:
parent
b2670c94f4
commit
5cd25cc8b1
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ impl Reader {
|
|||
if let Ok(path) = percent_encoding::percent_decode(&path).decode_utf8() {
|
||||
let parts: Vec<&str> = path.splitn(2, '?').collect();
|
||||
if parts.len() == 2 {
|
||||
Some((parts[0].to_owned(), parts[1][1..].to_owned()))
|
||||
Some((parts[0].to_owned(), parts[1].to_owned()))
|
||||
} else {
|
||||
Some((parts[0].to_owned(), String::new()))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue