Skip to content
Snippets Groups Projects
Unverified Commit 809c9b44 authored by Timo Kösters's avatar Timo Kösters
Browse files

Maybe fix room joins

parent c6e3438e
No related branches found
No related tags found
No related merge requests found
...@@ -345,6 +345,7 @@ pub fn get_media_file(&self, key: &[u8]) -> PathBuf { ...@@ -345,6 +345,7 @@ pub fn get_media_file(&self, key: &[u8]) -> PathBuf {
fn reqwest_client_builder(config: &Config) -> Result<reqwest::ClientBuilder> { fn reqwest_client_builder(config: &Config) -> Result<reqwest::ClientBuilder> {
let mut reqwest_client_builder = reqwest::Client::builder() let mut reqwest_client_builder = reqwest::Client::builder()
.pool_max_idle_per_host(0)
.connect_timeout(Duration::from_secs(30)) .connect_timeout(Duration::from_secs(30))
.timeout(Duration::from_secs(60 * 3)); .timeout(Duration::from_secs(60 * 3));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment