mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Fixed #2995
This commit is contained in:
parent
d098e6fd32
commit
d7e2e2e332
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ namespace Ombi.Schedule.Jobs.Lidarr
|
|||
ArtistId = a.artistId,
|
||||
ForeignAlbumId = a.foreignAlbumId,
|
||||
ReleaseDate = a.releaseDate,
|
||||
TrackCount = a.currentRelease.trackCount,
|
||||
TrackCount = a.currentRelease?.trackCount ?? 0,
|
||||
Monitored = a.monitored,
|
||||
Title = a.title,
|
||||
PercentOfTracks = a.statistics?.percentOfEpisodes ?? 0m,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue