aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader/zip_downloader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/downloader/zip_downloader.rs')
-rw-r--r--crates/shirabe/src/downloader/zip_downloader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/downloader/zip_downloader.rs b/crates/shirabe/src/downloader/zip_downloader.rs
index 7cd5000..c51a9ea 100644
--- a/crates/shirabe/src/downloader/zip_downloader.rs
+++ b/crates/shirabe/src/downloader/zip_downloader.rs
@@ -39,7 +39,7 @@ impl ZipDownloader {
event_dispatcher: Option<
std::rc::Rc<std::cell::RefCell<crate::event_dispatcher::EventDispatcher>>,
>,
- cache: Option<crate::cache::Cache>,
+ cache: Option<std::rc::Rc<std::cell::RefCell<crate::cache::Cache>>>,
filesystem: std::rc::Rc<std::cell::RefCell<crate::util::Filesystem>>,
process: std::rc::Rc<std::cell::RefCell<crate::util::ProcessExecutor>>,
) -> Self {