Fix #946: Fix import crash when importing M4A file with no embedded cover
This commit is contained in:
parent
db80710160
commit
66ef7a7332
3 changed files with 7 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ def clean_id3_pictures(apic):
|
|||
|
||||
def get_mp4_tag(f, k):
|
||||
if k == "pictures":
|
||||
return f.get("covr")
|
||||
return f.get("covr", [])
|
||||
raw_value = f.get(k, None)
|
||||
|
||||
if not raw_value:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue