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

Fixed: Albums not saving to DB due to release constraint

pull/190/head
Qstick 7 years ago
parent de22991856
commit b0238c1af4

@ -150,6 +150,8 @@ namespace NzbDrone.Core.Music
albumToUpdate.ForeignAlbumId = albumInfo.ForeignAlbumId;
albumToUpdate.Title = albumInfo.Title ?? "Unknown";
albumToUpdate.AlbumType = albumInfo.AlbumType;
albumToUpdate.Releases = albumInfo.Releases;
albumToUpdate.CurrentRelease = albumInfo.CurrentRelease;
_albumService.AddAlbum(albumToUpdate);

Loading…
Cancel
Save