Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a3f389af5e05f8e3cfb01b6367c5170e8b703d9a?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix RescanMovie command for single movie

Partial fix for 
pull/721/head
Tim Turner 8 years ago
parent 1aeb3c6fd6
commit a3f389af5e

@ -266,7 +266,8 @@ namespace NzbDrone.Core.MediaFiles
{
if (message.MovieId.HasValue)
{
var series = _movieService.GetMovie(message.MovieId.Value);
var movie = _movieService.GetMovie(message.MovieId.Value);
Scan(movie);
}
else
{

Loading…
Cancel
Save