Merge pull request #367 from whipper-team/feature/use-multivalue-artistid-tags
Handle artist MBIDs as multivalue tags
This commit is contained in:
@@ -143,8 +143,9 @@ class _Credit(list):
|
||||
i.get('artist').get('name', None)))
|
||||
|
||||
def getIds(self):
|
||||
# split()'s the joined string so we get a proper list of MBIDs
|
||||
return self.joiner(lambda i: i.get('artist').get('id', None),
|
||||
joinString=";")
|
||||
joinString=";").split(';')
|
||||
|
||||
|
||||
def _getWorks(recording):
|
||||
|
||||
Reference in New Issue
Block a user