Fixed: Handle null on album refresh

pull/190/head
Qstick 7 years ago
parent 26ef43f302
commit 054578fa2d

@ -129,8 +129,7 @@ namespace NzbDrone.Core.Music
if (albumToUpdate != null)
{
tuple = _albumInfo.GetAlbumInfo(album.ForeignAlbumId, albumToUpdate.CurrentRelease.Id);
tuple = _albumInfo.GetAlbumInfo(album.ForeignAlbumId, albumToUpdate.CurrentRelease?.Id);
albumInfo = tuple.Item1;
existingAlbums.Remove(albumToUpdate);
updateList.Add(albumToUpdate);

Loading…
Cancel
Save