Fixed: No Physical Release Date causing exception when setting last write time.

Fixes #390
This commit is contained in:
Leonardo Galli 2018-02-06 16:51:19 +01:00
parent 0bc61bea38
commit f9049566c1
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ namespace NzbDrone.Core.MediaFiles
{
var airDate = movie.PhysicalRelease;
if (airDate == null)
if (airDate.HasValue == false)
{
return false;
}
@ -65,7 +65,7 @@ namespace NzbDrone.Core.MediaFiles
{
var airDate = movie.InCinemas;
if (airDate == null)
if (airDate.HasValue == false)
{
return false;
}