fix: updates monitor to search for episodes that were released after monitor created
This commit is contained in:
@@ -129,7 +129,7 @@ readonly class MonitorTvShowHandler implements HandlerInterface
|
||||
{
|
||||
static $today = Carbon::today();
|
||||
$episodeAirDate = Carbon::parse($episodeInShow['air_date']);
|
||||
return $episodeAirDate > $today;
|
||||
return $episodeAirDate >= $today;
|
||||
}
|
||||
|
||||
private function episodeExists(array $episodeInShow, Map $downloadedEpisodes): bool
|
||||
|
||||
Reference in New Issue
Block a user