http: Change the query param key name

This commit is contained in:
Kerollmops 2018-04-22 18:30:24 +02:00
parent f851227ed4
commit 0581b296bb
No known key found for this signature in database
GPG Key ID: 016ACC0DC3ADC318
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ impl Service for MainService {
let mut resp = Response::new();
if let Some((_, key)) = url.query_pairs().find(|&(ref k, _)| k == "query") {
if let Some((_, key)) = url.query_pairs().find(|&(ref k, _)| k == "q") {
let key = key.to_lowercase();
let values = self.map.get(&key).map(|a| &a[..10]);
resp.body(&format!("{:?}", values));