Skip to content

Commit

Permalink
Merge reading from file and parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Goremykin committed Oct 12, 2023
1 parent 8d7e422 commit a773b43
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ public async Task ExecuteAsync(IProgress<double> progress, CancellationToken can
{
try
{
var failHistoryText = await File.ReadAllTextAsync(failHistoryPath, cancellationToken).ConfigureAwait(false);
previouslyFailedImages = failHistoryText
previouslyFailedImages = (await File.ReadAllTextAsync(failHistoryPath, cancellationToken).ConfigureAwait(false))
.Split('|', StringSplitOptions.RemoveEmptyEntries)
.ToList();
}
Expand Down

0 comments on commit a773b43

Please sign in to comment.