Also use correct header in fetcher.rs

This commit is contained in:
Felix 2020-04-23 13:42:09 +02:00
parent 3162cb580e
commit 1b1c2e229d
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ where
// TODO: this function should return a future
let timeout = Duration::from_secs(60);
let text = Request::get(url.as_str())
.header("Content-Type", APUB_JSON_CONTENT_TYPE)
.header("Accept", APUB_JSON_CONTENT_TYPE)
.connect_timeout(timeout)
.timeout(timeout)
.body(())?