Skip to content
Snippets Groups Projects
Verified Commit 8f0eabcb authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed unhandled crash when getting empty tag

parent b6681ce7
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,8 @@ def get_id3_tag(f, k):
return v
except KeyError:
break
except IndexError:
break
except AttributeError:
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment