diff options
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 { |
