Also use correct header in fetcher.rs

This commit is contained in:
Felix 2020-04-23 13:42:09 +02:00
parent 70816a4779
commit b8aaf5c1f1

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(())?