From 522ef9d8d5c93b586a7566001aa1546d88541dde Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 19 Sep 2016 21:33:18 -0700 Subject: [PATCH] Don't append the extension when using ParsePath --- src/NzbDrone.Core/Parser/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs index a326f5484..8127df11a 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -270,7 +270,7 @@ namespace NzbDrone.Core.Parser if (result == null) { Logger.Debug("Attempting to parse episode info using directory and file names. {0}", fileInfo.Directory.Name); - result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name + fileInfo.Extension); + result = ParseTitle(fileInfo.Directory.Name + " " + fileInfo.Name); } if (result == null)