mirror of
https://github.com/Radarr/Radarr
synced 2025-12-27 18:54:03 +01:00
Fixed: TVDB references in RefreshMovieService.cs
This commit is contained in:
parent
8bbec88b6f
commit
c5d7cf4eeb
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue