1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-01 12:54:21 +00:00

also use TMDBID on list sync

This commit is contained in:
geogolem 2017-03-03 19:31:38 -05:00
parent 3f2da1441f
commit a3c0f4cb3f

View file

@ -94,7 +94,7 @@ public void Execute(NetImportSyncCommand message)
bool foundMatch = false;
foreach (var listedMovie in listedMovies)
{
if (movie.ImdbId == listedMovie.ImdbId)
if (movie.TmdbId == listedMovie.TmdbId)
{
foundMatch = true;
break;