From eeb340554e64172eef1805dc7235810eb753b392 Mon Sep 17 00:00:00 2001 From: diamond75 Date: Fri, 4 Apr 2025 22:22:21 +1300 Subject: [PATCH] Updated get_lyrics function in playable.py --- zotify/playable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zotify/playable.py b/zotify/playable.py index eae531a..c13627d 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -233,7 +233,7 @@ class Track(PlayableContentFeeder.LoadedStream, Playable): return self.__lyrics except AttributeError: self.__lyrics = Lyrics( - self.__api.invoke_url(LYRICS_URL + bytes_to_base62(self.track.gid))[ + self.__api.invoke_url(LYRICS_URL + bytes_to_base62(self.track.hex_id()))[ "lyrics" ] )