mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
Fixed: Improve sorting movies by release dates
This commit is contained in:
@@ -42,6 +42,7 @@ namespace Radarr.Api.V3.Movies
|
||||
public DateTime? InCinemas { get; set; }
|
||||
public DateTime? PhysicalRelease { get; set; }
|
||||
public DateTime? DigitalRelease { get; set; }
|
||||
public DateTime? ReleaseDate { get; set; }
|
||||
public string PhysicalReleaseNote { get; set; }
|
||||
public List<MediaCover> Images { get; set; }
|
||||
public string Website { get; set; }
|
||||
@@ -122,6 +123,7 @@ namespace Radarr.Api.V3.Movies
|
||||
InCinemas = model.MovieMetadata.Value.InCinemas,
|
||||
PhysicalRelease = model.MovieMetadata.Value.PhysicalRelease,
|
||||
DigitalRelease = model.MovieMetadata.Value.DigitalRelease,
|
||||
ReleaseDate = model.GetReleaseDate(),
|
||||
|
||||
Status = model.MovieMetadata.Value.Status,
|
||||
Overview = translatedOverview,
|
||||
|
||||
Reference in New Issue
Block a user