Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
Fix: stop skipping every episode with archive command while using a n…
Browse files Browse the repository at this point in the history
…on premium account (#388)
  • Loading branch information
Frooastside committed Apr 22, 2024
1 parent 4f34751 commit 777b39a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crunchy-cli-core/src/archive/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,10 @@ impl Filter for ArchiveFilter {
.unwrap()
.push(episode.season_number)
}

return Ok(None);

if episodes.is_empty() {
return Ok(None);
}
}

let mut relative_episode_number = None;
Expand Down

0 comments on commit 777b39a

Please sign in to comment.