Fixed: Null Ref on Album Cache Update in TrackedDownloadService.cs

pull/955/head
Qstick 5 years ago
parent 91764ec115
commit 3288c21c36

@ -51,7 +51,8 @@ namespace NzbDrone.Core.Download.TrackedDownloads
public void UpdateAlbumCache(int albumId)
{
var updateCacheItems = _cache.Values.Where(x => x.RemoteAlbum.Albums.Any(a => a.Id == albumId)).ToList();
var updateCacheItems = _cache.Values.Where(x => x.RemoteAlbum != null && x.RemoteAlbum.Albums.Any(a => a.Id == albumId)).ToList();
foreach (var item in updateCacheItems)
{

Loading…
Cancel
Save