diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-26 22:03:25 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-26 22:03:34 +0900 |
| commit | c5850d62beabef0a6bcc4cf6a179589c0ba8f405 (patch) | |
| tree | 893e8903a8bd605da90fb5a460caba17f0789fea /crates/shirabe/src/util/remote_filesystem.rs | |
| parent | f411daceacad66e0bd774fda7d3c5ef8533cc55c (diff) | |
| download | php-shirabe-c5850d62beabef0a6bcc4cf6a179589c0ba8f405.tar.gz php-shirabe-c5850d62beabef0a6bcc4cf6a179589c0ba8f405.tar.zst php-shirabe-c5850d62beabef0a6bcc4cf6a179589c0ba8f405.zip | |
feat(factory): construct PluginManager after Rc::new_cyclic
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/util/remote_filesystem.rs')
| -rw-r--r-- | crates/shirabe/src/util/remote_filesystem.rs | 6 |
1 files changed, 5 insertions, 1 deletions
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 { |
