mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-20 22:54:10 +00:00
Read TMCL from ID3 when there is role or name (the role can be empty), not role AND name
This commit is contained in:
@@ -150,7 +150,7 @@ class ID3File(File):
|
||||
metadata.add(name, unicode(frame))
|
||||
elif frameid == "TMCL":
|
||||
for role, name in frame.people:
|
||||
if role and name:
|
||||
if role or name:
|
||||
metadata.add('performer:%s' % role, name)
|
||||
elif frameid == "TIPL":
|
||||
for role, name in frame.people:
|
||||
|
||||
Reference in New Issue
Block a user