fix: lyrics should be embedded in the markdown format rather than html

This commit is contained in:
Hazel 2024-04-19 12:57:34 +02:00
parent 919a99885c
commit 06ffae06a6

View File

@ -34,6 +34,6 @@ class Lyrics(OuterProxy):
@property @property
def metadata(self) -> Metadata: def metadata(self) -> Metadata:
return Metadata({ return Metadata({
id3Mapping.UNSYNCED_LYRICS: [self.text.html] id3Mapping.UNSYNCED_LYRICS: [self.text.markdown]
}) })