Fixed: Release group will not contain file extension

This commit is contained in:
Mark McDowall
2013-12-25 23:16:13 -08:00
parent a5a02ce90e
commit b29efa5823
3 changed files with 11 additions and 2 deletions
+3
View File
@@ -129,8 +129,11 @@ namespace NzbDrone.Core.Parser
if (result == null)
{
Logger.Warn("Unable to parse episode info from path {0}", path);
return null;
}
result.ReleaseGroup = ParseReleaseGroup(fileInfo.Name.Replace(fileInfo.Extension, ""));
return result;
}