Skip to content

Commit

Permalink
Bump version 0.1.14 -> 0.1.15, remove proxying of http client
Browse files Browse the repository at this point in the history
  • Loading branch information
DevinR528 committed Jun 19, 2020
1 parent 3a40354 commit 4c4d91c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumatui"
version = "0.1.14"
version = "0.1.15"
authors = ["Devin R <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A click-able command-line Matrix client."
Expand Down
4 changes: 2 additions & 2 deletions src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ impl MatrixClient {
let store: Result<JsonStore> = JsonStore::open(path).map_err(Into::into);
// reset the client with the state store with username as part of the store path
let client_config = ClientConfig::default()
.proxy("http://localhost:8080")? // for mitmproxy
.disable_ssl_verification()
// .proxy("http://localhost:8080")? // for mitmproxy
// .disable_ssl_verification()
.state_store(Box::new(store?));

let inner: Result<Client> =
Expand Down

0 comments on commit 4c4d91c

Please sign in to comment.