Fix issue where searching for new movies is not possible.

Leonardo Galli 8 years ago
parent f2218006a1
commit 06ad30397b

@ -58,6 +58,11 @@ namespace NzbDrone.Core.Tv
public string FolderName()
{
if (Path.IsNullOrWhiteSpace())
{
return "";
}
//Well what about Path = Null?
return new DirectoryInfo(Path).Name;
}
@ -93,7 +98,7 @@ namespace NzbDrone.Core.Tv
return true;
}
return DateTime.Now >= MinimumAvailabilityDate.AddDays(delay);
return DateTime.Now >= MinimumAvailabilityDate.AddDays((double)delay);
}
public override string ToString()

Loading…
Cancel
Save