Fixed: Movie status after using movie editor

Fixes #9681
This commit is contained in:
Bogdan 2024-01-24 08:20:02 +02:00
parent 3aeb52c3fd
commit e5ccc32a37
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}