Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/054578fa2d7e5d14a3662dd402a747b2ab5535cf You should set ROOT_URL correctly, otherwise the web may not work correctly.

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