Skip to content

Commit

Permalink
fix addr
Browse files Browse the repository at this point in the history
  • Loading branch information
deevope committed Dec 30, 2021
1 parent 2fad6ef commit b61449e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impls/src/tor/bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ impl PluginClient {
let ice_addr = arg.trim();
let vec_ice_addr = ice_addr.split(",");
for addr in vec_ice_addr {
addr.to_lowercase();
let addr = addr.to_lowercase();
if addr.starts_with("stun:") || addr.starts_with("turn:") {
let address = addr.replace("stun:", "").replace("turn:", "");
let _p_address = TorProxy::parse_address(&address)
Expand Down

0 comments on commit b61449e

Please sign in to comment.