Compare commits

...

1 Commits

View File

@@ -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