1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-13 02:39:32 +00:00

fix query splitting

This commit is contained in:
Nikolay Kim 2017-10-29 06:03:51 -07:00
parent b2670c94f4
commit 5cd25cc8b1

View file

@ -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()))
}