master
Stephen 2020-07-16 20:21:34 -03:00
parent 2f99d0de59
commit 44dfbd2fa6
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ impl Client {
let http_client = reqwest::Client::builder();
let http_client = match (config.timeout) {
let http_client = match config.timeout {
Some(x) => http_client.timeout(x),
None => http_client,
};