From b0238c1af48d3145874efbc40613edfb5c0255a3 Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 19 Jan 2018 23:03:08 -0500 Subject: [PATCH] Fixed: Albums not saving to DB due to release constraint --- src/NzbDrone.Core/Music/RefreshAlbumService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Music/RefreshAlbumService.cs b/src/NzbDrone.Core/Music/RefreshAlbumService.cs index bc6bdee03..f03ff6cc2 100644 --- a/src/NzbDrone.Core/Music/RefreshAlbumService.cs +++ b/src/NzbDrone.Core/Music/RefreshAlbumService.cs @@ -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);