From 917dc7695f6b9804f9cb0610ebb976358e79e106 Mon Sep 17 00:00:00 2001 From: rembo10 Date: Thu, 15 May 2014 21:07:04 -0700 Subject: [PATCH] Fix for #1627: adding albums didn't add a ReleaseID to the database --- headphones/importer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/headphones/importer.py b/headphones/importer.py index 6f212ad5..fb5c9aa2 100644 --- a/headphones/importer.py +++ b/headphones/importer.py @@ -589,6 +589,7 @@ def addReleaseById(rid): controlValueDict = {"AlbumID": rgid} newValueDict = {"ArtistID": release_dict['artist_id'], + "ReleaseID": rgid, "ArtistName": release_dict['artist_name'], "AlbumTitle": release_dict['rg_title'], "AlbumASIN": release_dict['asin'],