Also use correct header in fetcher.rs

pull/722/head
Felix 2020-04-23 13:42:09 +02:00
parent 70816a4779
commit b8aaf5c1f1
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(())?