Fix: stop skipping every episode with archive command while using a non premium account (#388)

This commit is contained in:
Simon 2024-04-22 23:47:49 +02:00 committed by GitHub
parent 4f3475131c
commit 777b39aba1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;