1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Fix id3 tag bug

This commit is contained in:
Steffo 2020-01-30 20:04:15 +01:00
parent 60142cced0
commit d8d338183c
3 changed files with 3 additions and 2 deletions

View file

@ -5,7 +5,7 @@
[tool.poetry]
name = "royalnet"
version = "5.3.3"
version = "5.3.4"
description = "A multipurpose bot and web framework"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"

View file

@ -105,6 +105,7 @@ class YtdlFile:
tag_file = eyed3.load(self.filename)
if not tag_file:
log.debug(f"No ID3 tags found: {self}")
return
tag: eyed3.core.Tag = tag_file.tag
if tag.title:
log.debug(f"Found title: {self}")

View file

@ -1 +1 @@
semantic = "5.3.3"
semantic = "5.3.4"