We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a603f90 commit 8fa108fCopy full SHA for 8fa108f
wholesym/src/verbose_symbol_manager_observer.rs
@@ -32,8 +32,7 @@ impl SymbolManagerObserver for VerboseSymbolManagerObserver {
32
}
33
34
fn on_download_started(&self, download_id: u64) {
35
- let urls = self.urls.lock().unwrap();
36
- let url = urls.get(&download_id).unwrap();
+ let url = self.urls.lock().unwrap().get(&download_id).unwrap().clone();
37
eprintln!("Downloading from {url}...");
38
39
0 commit comments