fix: missing status check in query

This commit is contained in:
2025-05-07 22:40:19 -05:00
parent 25ff3e726d
commit fe0ab2ef5a

View File

@@ -64,6 +64,7 @@ readonly class MonitorTvSeasonHandler implements HandlerInterface
'monitorType' => 'tvepisode',
'season' => $monitor->getSeason(),
'episode' => $episode['episode_number'],
'status' => ['New', 'Active', 'In Progress']
]);
$this->logger->info('> [MonitorTvSeasonHandler] Monitor exists for season ' . $monitor->getSeason() . ' episode ' . $episode['episode_number'] . ' for title: ' . $monitor->getTitle() . ' ? ' . (null !== $monitorCheck ? 'YES' : 'NO'));