Skip to content

Commit

Permalink
Fix not all video parts being redownloaded
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Aug 4, 2024
1 parent ec6f5f6 commit 3b99ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/VideoDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private async Task VerifyDownloadedParts(ICollection<M3U8.Stream> playlist, Rang
}

_progress.LogInfo($"The following parts will be redownloaded: {string.Join(", ", failedParts)}");
await DownloadVideoPartsAsync(failedParts, videoListCrop, baseUrl, downloadFolder, vodAirDate, cancellationToken);
await DownloadVideoPartsAsync(failedParts, Range.All, baseUrl, downloadFolder, vodAirDate, cancellationToken);
}
}

Expand Down

0 comments on commit 3b99ed3

Please sign in to comment.