mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
TheMovieDB.org is now used as metadata source.
This commit is contained in:
@@ -18,9 +18,9 @@ namespace NzbDrone.Core.Validation.Paths
|
||||
{
|
||||
if (context.PropertyValue == null) return true;
|
||||
|
||||
var imdbid = context.PropertyValue.ToString();
|
||||
int tmdbId = (int)context.PropertyValue;
|
||||
|
||||
return (!_seriesService.GetAllMovies().Exists(s => s.ImdbId == imdbid));
|
||||
return (!_seriesService.GetAllMovies().Exists(s => s.TmdbId == tmdbId));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user