mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Really fixed #3010 this time. That's embarrassing
This commit is contained in:
parent
3e1aee1644
commit
8b450b4169
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ namespace Ombi.Schedule.Jobs.Radarr
|
|||
var movieIds = new List<RadarrCache>();
|
||||
foreach (var m in movies)
|
||||
{
|
||||
if (m.tmdbId > 0 && !m.monitored)
|
||||
if (m.tmdbId > 0 && m.monitored)
|
||||
{
|
||||
movieIds.Add(new RadarrCache
|
||||
{
|
||||
|
@ -111,4 +111,4 @@ namespace Ombi.Schedule.Jobs.Radarr
|
|||
GC.SuppressFinalize(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue