diff options
| author | Mason Reed <mason@vector35.com> | 2025-11-20 18:06:54 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-11-25 22:29:25 -0500 |
| commit | 1daa5154ac5abfce19132c27d91ff255d2194683 (patch) | |
| tree | 5e29de7ece6a71f070b1a1d21d378fbbe513e240 /plugins/warp | |
| parent | cbd954c0d4c5718442b71e2b65fd5a731765c6d5 (diff) | |
[WARP] Stop propagating skipped file error when processing archives
Should have the same behavior as doing it on a directory
Diffstat (limited to 'plugins/warp')
| -rw-r--r-- | plugins/warp/src/processor.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/warp/src/processor.rs b/plugins/warp/src/processor.rs index 2319c5fc..df26f613 100644 --- a/plugins/warp/src/processor.rs +++ b/plugins/warp/src/processor.rs @@ -772,6 +772,10 @@ impl WarpFileProcessor { }) .filter_map(|res| match res { Ok(result) => Some(Ok(result)), + Err(ProcessingError::SkippedFile(path)) => { + log::debug!("Skipping archive file: {:?}", path); + None + } Err(ProcessingError::Cancelled) => Some(Err(ProcessingError::Cancelled)), Err(e) => { log::error!("Archive file processing error: {:?}", e); |
