aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/remote_filesystem.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/util/remote_filesystem.rs')
-rw-r--r--crates/shirabe/src/util/remote_filesystem.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/util/remote_filesystem.rs b/crates/shirabe/src/util/remote_filesystem.rs
index 9aa40bd..22f5ea2 100644
--- a/crates/shirabe/src/util/remote_filesystem.rs
+++ b/crates/shirabe/src/util/remote_filesystem.rs
@@ -292,7 +292,7 @@ impl RemoteFilesystem {
{
let _ = self.config.borrow_mut().prohibit_url_by_config(
&file_url,
- Some(&*self.io.borrow()),
+ Some(self.io.clone()),
&indexmap::IndexMap::new(),
);
}
@@ -338,7 +338,7 @@ impl RemoteFilesystem {
_ => IndexMap::new(),
};
let _ = HttpDownloader::output_warnings(
- &*self.io.borrow(),
+ self.io.clone(),
origin_url,
&parsed_map,
);