mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
#3010 - Make sure we only sync the Monitored Radarr movies...
This commit is contained in:
parent
c1db84e17c
commit
c9a816fbf4
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ namespace Ombi.Schedule.Jobs.Radarr
|
||||||
var movieIds = new List<RadarrCache>();
|
var movieIds = new List<RadarrCache>();
|
||||||
foreach (var m in movies)
|
foreach (var m in movies)
|
||||||
{
|
{
|
||||||
if (m.tmdbId > 0)
|
if (m.tmdbId > 0 && !m.monitored)
|
||||||
{
|
{
|
||||||
movieIds.Add(new RadarrCache
|
movieIds.Add(new RadarrCache
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue