Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanKung committed Aug 17, 2023
1 parent 889d898 commit a42fabe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions node/src/browser/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,10 @@ impl Client {
sk_builder = sk_builder.set_session_sig(sig.to_vec());
let session_sk = sk_builder.build().unwrap();
let config = ProcessorConfig::new(ice_servers, session_sk, stabilize_timeout);
Ok(
JsValue::from(
Self::new_client_with_storage_internal(config, callback, "rings-node".to_string())
.await?)
)
Ok(JsValue::from(
Self::new_client_with_storage_internal(config, callback, "rings-node".to_string())
.await?,
))
})
}

Expand Down

0 comments on commit a42fabe

Please sign in to comment.