diff --git a/Wasari.Crunchyroll/CrunchyrollDownloadService.cs b/Wasari.Crunchyroll/CrunchyrollDownloadService.cs index dfe8d4b..915b879 100644 --- a/Wasari.Crunchyroll/CrunchyrollDownloadService.cs +++ b/Wasari.Crunchyroll/CrunchyrollDownloadService.cs @@ -90,6 +90,7 @@ public override async Task DownloadEpisodes(string url, int .SelectAwait(i => i.FirstAsync()) .Select(o => new WasariEpisodeInput(o.Url, o.Locale, InputType.Subtitle))) .Cast() + .Where(i => DownloadOptions.Value.IncludeSubs || i.Type != InputType.Subtitle) .ToArrayAsync(); }, TimeSpan.FromMilliseconds(commonEpisodeData.DurationMs)); });