diff --git a/ocarina/body/footer/nowplaying.py b/ocarina/body/footer/nowplaying.py index 811329bc..3865c4e1 100644 --- a/ocarina/body/footer/nowplaying.py +++ b/ocarina/body/footer/nowplaying.py @@ -74,5 +74,5 @@ def on_load(attrs): YEAR.set_text("Year: %s" % attrs["year"]) LENGTH.set_text("Length: %s" % attrs["lenstr"]) COUNT.set_text("Play count: %s" % attrs["count"]) - set_art("images/ocarina.png") + set_art(attrs["art"]) on_like(attrs["like"]) diff --git a/ocarina/body/footer/tiny.py b/ocarina/body/footer/tiny.py index b06cf5b5..199e15c6 100644 --- a/ocarina/body/footer/tiny.py +++ b/ocarina/body/footer/tiny.py @@ -62,4 +62,4 @@ def on_pause(): def on_load(attrs): now_playing.set_text("%s by %s" % (attrs["title"], attrs["artist"])) duration.set_text(" / %s" % attrs["lenstr"]) - set_art("images/ocarina.png") + set_art(attrs["art"]) diff --git a/ocarina/callbacks.py b/ocarina/callbacks.py index 5f8d2fc2..d375118d 100644 --- a/ocarina/callbacks.py +++ b/ocarina/callbacks.py @@ -20,7 +20,6 @@ def on_load(file, attrs): footer.on_load(attrs) queue.refresh() body.cur_page_goto() - libsaria.path.lastfm.get_artwork(file) callbacks.on_load = on_load def on_like(like):