1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

Fixed: Show year and fix sorting for collection movies

This commit is contained in:
Bogdan
2023-10-08 01:41:15 +03:00
parent a2d505c795
commit f5692d6cf1
6 changed files with 29 additions and 21 deletions

View File

@@ -12,6 +12,7 @@ namespace Radarr.Api.V3.Collections
public string Title { get; set; }
public string CleanTitle { get; set; }
public string SortTitle { get; set; }
public MovieStatusType Status { get; set; }
public string Overview { get; set; }
public int Runtime { get; set; }
public List<MediaCover> Images { get; set; }
@@ -37,6 +38,7 @@ namespace Radarr.Api.V3.Collections
{
TmdbId = model.TmdbId,
Title = translatedTitle,
Status = model.Status,
Overview = translatedOverview,
SortTitle = model.SortTitle,
Images = model.Images,