mirror of
https://github.com/Radarr/Radarr
synced 2025-12-24 01:10:41 +01:00
parent
3aeb52c3fd
commit
e5ccc32a37
1 changed files with 3 additions and 3 deletions
|
|
@ -55,7 +55,7 @@ public MovieResource()
|
|||
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 @@ public static Movie ToModel(this MovieResource resource)
|
|||
|
||||
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…
Reference in a new issue