mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
Fixed: Movies parsed from lists with no year and only title getting added mutliple times.
This commit is contained in:
parent
5ac0f28fff
commit
172cf4d06e
1 changed files with 8 additions and 0 deletions
|
@ -446,6 +446,14 @@ namespace NzbDrone.Core.Tv
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = _movieRepository.FindByTitle(movie.Title.CleanSeriesTitle());
|
||||||
|
if (result != null)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue