From c5850d62beabef0a6bcc4cf6a179589c0ba8f405 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 26 May 2026 22:03:25 +0900 Subject: feat(factory): construct PluginManager after Rc::new_cyclic Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe/src/util/remote_filesystem.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'crates/shirabe/src/util/remote_filesystem.rs') diff --git a/crates/shirabe/src/util/remote_filesystem.rs b/crates/shirabe/src/util/remote_filesystem.rs index 8d50fa4..9aa40bd 100644 --- a/crates/shirabe/src/util/remote_filesystem.rs +++ b/crates/shirabe/src/util/remote_filesystem.rs @@ -337,7 +337,11 @@ impl RemoteFilesystem { PhpMixed::Array(m) => m.into_iter().map(|(k, v)| (k, *v)).collect(), _ => IndexMap::new(), }; - let _ = HttpDownloader::output_warnings(&*self.io.borrow(), origin_url, &parsed_map); + let _ = HttpDownloader::output_warnings( + &*self.io.borrow(), + origin_url, + &parsed_map, + ); } if [401_i64, 403].contains(&code) && retry_auth_failure { -- cgit v1.3.1