mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -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,
|
ArtistId = a.artistId,
|
||||||
ForeignAlbumId = a.foreignAlbumId,
|
ForeignAlbumId = a.foreignAlbumId,
|
||||||
ReleaseDate = a.releaseDate,
|
ReleaseDate = a.releaseDate,
|
||||||
TrackCount = a.currentRelease.trackCount,
|
TrackCount = a.currentRelease?.trackCount ?? 0,
|
||||||
Monitored = a.monitored,
|
Monitored = a.monitored,
|
||||||
Title = a.title,
|
Title = a.title,
|
||||||
PercentOfTracks = a.statistics?.percentOfEpisodes ?? 0m,
|
PercentOfTracks = a.statistics?.percentOfEpisodes ?? 0m,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue