Skip to content

Commit

Permalink
Don't panic if file manager thread is unreachable when cleaning up Bl…
Browse files Browse the repository at this point in the history
…obs.
  • Loading branch information
jdm committed Jul 29, 2019
1 parent 7a570a7 commit 9e18166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/script/dom/blob.rs
Expand Up @@ -296,7 +296,7 @@ impl Blob {

let msg = FileManagerThreadMsg::DecRef(f.id.clone(), origin, tx);
self.send_to_file_manager(msg);
let _ = rx.recv().unwrap();
let _ = rx.recv();
}
}

Expand Down

0 comments on commit 9e18166

Please sign in to comment.