mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-13 18:16:55 -07:00
fix(sonarr): 🐛 Fixed an issue where we were sometimes incorrectly setting the state of episodes that are already monitored in sonarr
This commit is contained in:
parent
a4105eb18e
commit
fd1acb88cb
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ namespace Ombi.Schedule.Jobs.Sonarr
|
|||
|
||||
foreach (var s in ids)
|
||||
{
|
||||
if (!s.Monitored || s.EpisodeFileCount == 0) // We have files
|
||||
if (!s.Monitored && s.EpisodeFileCount == 0) // We have files
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue