Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e5ccc32a3755ffe85bbd614d5e80cf00be572757 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Movie status after using movie editor

Fixes 
pull/9683/head
Bogdan 1 year ago
parent 3aeb52c3fd
commit e5ccc32a37

@ -55,7 +55,7 @@ namespace Radarr.Api.V3.Movies
public int QualityProfileId { get; set; }
// Compatibility
public bool HasFile { get; set; }
public bool? HasFile { get; set; }
// Editing Only
public bool Monitored { get; set; }
@ -198,9 +198,9 @@ namespace Radarr.Api.V3.Movies
public static Movie ToModel(this MovieResource resource, Movie movie)
{
var updatedmovie = resource.ToModel();
var updatedMovie = resource.ToModel();
movie.ApplyChanges(updatedmovie);
movie.ApplyChanges(updatedMovie);
return movie;
}

Loading…
Cancel
Save