mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-24 23:13:10 +00:00
Fixed: Don't log all daily episodes parsing as unknown episodes
This commit is contained in:
parent
ac587168cd
commit
8f9e076325
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue