mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-10 01:25:30 +01:00
Fixed: Don't set missing release dates to 0001-01-01
This commit is contained in:
parent
77e4c99713
commit
225af556d9
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ public class AlbumResource
|
|||
public List<ImageResource> Images { get; set; }
|
||||
public List<LinkResource> Links { get; set; }
|
||||
public RatingResource Rating { get; set; }
|
||||
public DateTime ReleaseDate { get; set; }
|
||||
public DateTime? ReleaseDate { get; set; }
|
||||
public List<ReleaseResource> Releases { get; set; }
|
||||
public List<string> SecondaryTypes { get; set; }
|
||||
public string Title { get; set; }
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ public class ReleaseResource
|
|||
{
|
||||
public string Disambiguation { get; set; }
|
||||
public List<string> Country { get; set; }
|
||||
public DateTime ReleaseDate { get; set; }
|
||||
public DateTime? ReleaseDate { get; set; }
|
||||
public string Id { get; set; }
|
||||
public List<string> Label { get; set; }
|
||||
public List<MediumResource> Media { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue