Skip to content

Commit 73708d7

Browse files
committed
Latest
1 parent a8b6202 commit 73708d7

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

core/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use iroh_blobs::get::db::DownloadProgress;
1515

1616
use iroh_blobs::hashseq::HashSeq;
1717
use iroh_blobs::store::{ImportProgress, Store};
18-
use iroh_blobs::HashAndFormat;
1918
use iroh_blobs::{
2019
net_protocol::Blobs, store::ImportMode, ticket::BlobTicket, util::SetTagOption, BlobFormat,
2120
Hash, Tag,
@@ -357,7 +356,7 @@ mod tests {
357356

358357
tokio::spawn(async move {
359358
while let Some(event) = rx.recv().await {
360-
println!("[SENDER]: Received event, {:?}", event);
359+
println!("[SENDER]: Received event , {:?}", event);
361360
}
362361
println!("[SENDER]: Receiver closed, all events processed.");
363362
});

src-tauri/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async fn receive_files(
146146

147147
println!("files: {:?}", files);
148148

149-
handle.await.unwrap();
149+
handle.await.expect("COuld not await handle");
150150

151151
Ok(outpath.to_str().unwrap().to_owned())
152152
}

0 commit comments

Comments
 (0)