1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

View File

@ -206,7 +206,7 @@ public void Execute(RefreshMovieCommand message)
}
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 @@ public void Execute(RefreshMovieCommand message)
}
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)