Bugzilla – Bug 4900
Roles in contributor_album Database will be overwritten
Last modified: 2008-12-18 11:12:12 UTC
I have a MP3-Album where the Artist is the Conductor. The contributer_track Database is fine, as there are multiple entries possible. The file has the following Tags: TPE1 James Levine TPE3 James Levine This leads to Role 3 in the contributor_album Database for this Contributor and Album. So the TPE1 is overwritten with the later TPE3. In my opinion the TPE1 is far more important and should never overwritten. So there should be a query to not overwrite the Role, if it's 1 or 5. Or the simple and not reliable Solution is never overwriting. The following Query in the Custom Browse Addon misses the the above Album, as the Role is not 1 or 5: select albums.id,albums.title,substr(albums.titlesort,1,1) from albums,contributor_album,contributors where albums.id=contributor_album.album and contributor_album.contributor=contributors.id and contributor_album.role in (1,5)
related to bug 4925
Not going to get fixed for 6.5.2.
since there is some mentioned relation to 4925, let's investigate for 6.5.3 and see if there is room to solve this one in that timeline.
See the latest nightly builds as this is related to the checkins for bug 4882
Steven could you have a look and see if this bug still exists after the change KDF mentions? Thanks.
Ping :)
Yes, this is now working for me with the latest nightly builds. Using the example from comment #0 above I now get role 1 'ARTIST' and role 3 'CONDUCTOR' for contributer_album when before I only got role 3 'CONDUCTOR' for contributer_album.
added a changelog entry at change 12335 and change 12336. marking fixed, please reopen if there are any issues.