1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 15:47:20 +02:00

Fixed: False positives on selective Kodi library updates

Fixes #8879
This commit is contained in:
Qstick 2023-07-24 21:08:40 -05:00
parent bf0f681d46
commit 2fe6847eb3

View File

@ -67,7 +67,7 @@ public string GetMoviePath(XbmcSettings settings, Movie movie)
var matchingMovies = allMovies.FirstOrDefault(s =>
{
return s.ImdbNumber == movie.ImdbId || s.Label == movie.Title;
return s.ImdbNumber == movie.ImdbId;
});
if (matchingMovies != null)