Change summary
crates/live_kit_client/src/prod.rs | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
Detailed changes
@@ -128,14 +128,9 @@ impl Room {
let url = url.to_string();
let token = token.to_string();
async move {
- match rx.await.unwrap().context("error connecting to room") {
- Ok(()) => {
- *this.connection.lock().0.borrow_mut() =
- ConnectionState::Connected { url, token };
- Ok(())
- }
- Err(err) => Err(err),
- }
+ rx.await.unwrap().context("error connecting to room")?;
+ *this.connection.lock().0.borrow_mut() = ConnectionState::Connected { url, token };
+ Ok(())
}
}