Skip to content

Commit

Permalink
remove unnecessary type
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwoodbury committed Nov 3, 2023
1 parent f2f0407 commit b05fa48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/warp-blink-wrtc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ async fn handle_call_initiation(
};

let signal: InitiationSignal = {
let lock: tokio::sync::RwLockReadGuard<'_, Option<DID>> = own_id.read().await;
let lock = own_id.read().await;
let own_id = match lock.as_ref().ok_or(Error::BlinkNotInitialized) {
Ok(r) => r,
Err(e) => {
Expand Down

0 comments on commit b05fa48

Please sign in to comment.