Fixed: TVDB references in RefreshMovieService.cs

This commit is contained in:
devbrian 2019-11-12 09:38:59 -06:00 committed by Qstick
parent 8bbec88b6f
commit c5d7cf4eeb
1 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ namespace NzbDrone.Core.Movies
}
catch (MovieNotFoundException)
{
_logger.Error("Movie '{0}' (imdbid {1}) was not found, it may have been removed from TheTVDB.", movie.Title, movie.ImdbId);
_logger.Error("Movie '{0}' (imdbid {1}) was not found, it may have been removed from The Movie Database.", movie.Title, movie.ImdbId);
}
catch (Exception e)
{
@ -229,7 +229,7 @@ namespace NzbDrone.Core.Movies
}
catch (MovieNotFoundException)
{
_logger.Error("Movie '{0}' (imdbid {1}) was not found, it may have been removed from TheTVDB.", movie.Title, movie.ImdbId);
_logger.Error("Movie '{0}' (imdbid {1}) was not found, it may have been removed from The Movie Database.", movie.Title, movie.ImdbId);
continue;
}
catch (Exception e)