1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 18:42:42 +01:00

Fix RescanMovie command for single movie

Partial fix for #669
This commit is contained in:
Tim Turner 2017-02-11 14:38:17 -05:00
parent 1aeb3c6fd6
commit a3f389af5e

View File

@ -266,7 +266,8 @@ public void Execute(RescanMovieCommand message)
{
if (message.MovieId.HasValue)
{
var series = _movieService.GetMovie(message.MovieId.Value);
var movie = _movieService.GetMovie(message.MovieId.Value);
Scan(movie);
}
else
{