Merge pull request #367 from whipper-team/feature/use-multivalue-artistid-tags

Handle artist MBIDs as multivalue tags
This commit is contained in:
JoeLametta
2019-02-15 18:44:12 +01:00
committed by GitHub
2 changed files with 41 additions and 32 deletions

View File

@@ -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):