mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(archival): 🐛 don't write file if no stream conversion strategy exists
This commit is contained in:
parent
7f37cb15df
commit
e4d9aae065
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ public async Task ArchiveFileAsync(
|
|||
"No file stream conversion strategy found for extension {Extension} in target {Target}. Skipping file",
|
||||
segment.SourceExtension,
|
||||
file.Target);
|
||||
break;
|
||||
return;
|
||||
}
|
||||
|
||||
textStreams.Add(strategy.Convert(segment, cancellationToken));
|
||||
|
|
|
|||
Loading…
Reference in a new issue