Fix a crash affecting some mp3 files
This commit is contained in:
parent
d0bc79442b
commit
46b3ae1672
@ -37,6 +37,8 @@ class MP3Parser(MutagenParser):
|
|||||||
def get_meta(self) -> Dict[str, Union[str, dict]]:
|
def get_meta(self) -> Dict[str, Union[str, dict]]:
|
||||||
metadata = {} # type: Dict[str, Union[str, dict]]
|
metadata = {} # type: Dict[str, Union[str, dict]]
|
||||||
meta = mutagen.File(self.filename).tags
|
meta = mutagen.File(self.filename).tags
|
||||||
|
if not meta:
|
||||||
|
return metadata
|
||||||
for key in meta:
|
for key in meta:
|
||||||
if not hasattr(meta[key], 'text'): # pragma: no cover
|
if not hasattr(meta[key], 'text'): # pragma: no cover
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user