From b5ecc4d209f62e9401817e14901aa7e95686ae7d Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 14 Sep 2018 22:40:34 -0400 Subject: [PATCH] Fixed: Episode reference in Parser.cs --- src/NzbDrone.Core/Parser/Parser.cs | 2 +- src/NzbDrone.Core/Parser/ParsingService.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs index 90e0fad72..05cbee3da 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -722,7 +722,7 @@ namespace NzbDrone.Core.Parser result.ArtistTitle = artistName; result.ArtistTitleInfo = GetArtistTitleInfo(result.ArtistTitle); - Logger.Debug("Episode Parsed. {0}", result); + Logger.Debug("Track Parsed. {0}", result); return result; } diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 459dc285c..9e0660867 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -8,7 +8,6 @@ using NzbDrone.Core.MediaFiles; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Music; using System; -using System.Drawing.Text; namespace NzbDrone.Core.Parser {