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
Loading
...@@ -44,6 +44,8 @@ def get_id3_tag(f, k): ...@@ -44,6 +44,8 @@ def get_id3_tag(f, k):
return v return v
except KeyError: except KeyError:
break break
except IndexError:
break
except AttributeError: except AttributeError:
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment