1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fixed language parsing of movies with language in movie name.

Fixes #793
This commit is contained in:
Leonardo Galli
2017-02-22 13:40:06 +01:00
parent 89e5001bad
commit a0050fedd3
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -406,7 +406,7 @@ namespace NzbDrone.Core.Parser
if (result != null)
{
result.Language = LanguageParser.ParseLanguage(title);
result.Language = LanguageParser.ParseLanguage(simpleTitle.Replace(result.MovieTitle, "A Movie"));
Logger.Debug("Language parsed: {0}", result.Language);
result.Quality = QualityParser.ParseQuality(title);