mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
Fix skipping every episode while not premium
This commit is contained in:
parent
6b779d59a1
commit
cad9ac41f4
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ impl Filter for ArchiveFilter {
|
|||
episodes.push((episode.clone(), episode.subtitle_locales.clone()))
|
||||
}
|
||||
|
||||
if self.seasons_with_premium.is_some() {
|
||||
if self.seasons_with_premium.is_some() && episode.is_premium_only {
|
||||
let episode_len_before = episodes.len();
|
||||
episodes.retain(|(e, _)| !e.is_premium_only);
|
||||
if episode_len_before < episodes.len()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue