mirror of
https://github.com/Radarr/Radarr
synced 2026-02-13 10:12:17 +01:00
Hopefully fix issue when importing
existing scene named movies
This commit is contained in:
parent
4f4ad77ad1
commit
7d3118aece
1 changed files with 2 additions and 2 deletions
|
|
@ -211,14 +211,14 @@ public List<Movie> SearchForNewMovie(string title)
|
|||
|
||||
lowerTitle = lowerTitle.Replace(".", "");
|
||||
|
||||
var parserResult = Parser.Parser.ParseMovieTitle(title.Replace(".", ""), true);
|
||||
var parserResult = Parser.Parser.ParseMovieTitle(title, true);
|
||||
|
||||
var yearTerm = "";
|
||||
|
||||
if (parserResult != null && parserResult.MovieTitle != title)
|
||||
{
|
||||
//Parser found something interesting!
|
||||
lowerTitle = parserResult.MovieTitle.ToLower().replace(".", " "); //TODO Update so not every period gets replaced (e.g. R.I.P.D.)
|
||||
lowerTitle = parserResult.MovieTitle.ToLower().Replace(".", " "); //TODO Update so not every period gets replaced (e.g. R.I.P.D.)
|
||||
if (parserResult.Year > 1800)
|
||||
{
|
||||
yearTerm = parserResult.Year.ToString();
|
||||
|
|
|
|||
Loading…
Reference in a new issue