mirror of
https://github.com/Radarr/Radarr
synced 2026-04-19 08:10:50 +02:00
Fix parameter in logging statement from AddMovieService
This commit is contained in:
parent
9ede227178
commit
f0be9994b1
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ private Movie AddSkyhookData(Movie newMovie)
|
|||
}
|
||||
catch (MovieNotFoundException)
|
||||
{
|
||||
_logger.Error("TmdbId {1} was not found, it may have been removed from TMDb.", newMovie.TmdbId);
|
||||
_logger.Error("TmdbId {0} was not found, it may have been removed from TMDb.", newMovie.TmdbId);
|
||||
|
||||
throw new ValidationException(new List<ValidationFailure>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue