Change summary
crates/project/src/worktree.rs | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
Detailed changes
@@ -838,8 +838,7 @@ impl LocalWorktree {
.unwrap()
.path_changes_tx
.try_send((vec![abs_path], tx))
- .unwrap();
- });
+ })?;
rx.recv().await;
Ok(())
}))
@@ -930,7 +929,7 @@ impl LocalWorktree {
}
let (tx, mut rx) = barrier::channel();
- path_changes_tx.try_send((paths, tx)).unwrap();
+ path_changes_tx.try_send((paths, tx))?;
rx.recv().await;
this.upgrade(&cx)
.ok_or_else(|| anyhow!("worktree was dropped"))?