|
|
|
@ -161,8 +161,11 @@ namespace NzbDrone.Core.NetImport
|
|
|
|
|
{
|
|
|
|
|
var moviesToUpdate = new List<Movie>();
|
|
|
|
|
|
|
|
|
|
if (_configService.ListSyncLevel != "disabled")
|
|
|
|
|
if (_configService.ListSyncLevel == "disabled")
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var moviesInLibrary = _movieService.GetAllMovies();
|
|
|
|
|
foreach (var movie in moviesInLibrary)
|
|
|
|
|
{
|
|
|
|
@ -195,7 +198,6 @@ namespace NzbDrone.Core.NetImport
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_movieService.UpdateMovie(moviesToUpdate, true);
|
|
|
|
|
}
|
|
|
|
|