1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-29 23:12:39 +01:00

Fixed: Don't log all daily episodes parsing as unknown episodes

This commit is contained in:
Mark McDowall 2015-08-21 17:54:50 -07:00
parent ac587168cd
commit 8f9e076325

View File

@ -70,7 +70,7 @@ namespace NzbDrone.Core.Parser.Model
{
string episodeString = "[Unknown Episode]";
if (IsDaily && EpisodeNumbers == null)
if (IsDaily && EpisodeNumbers.Empty())
{
episodeString = String.Format("{0}", AirDate);
}