From 939f4e11931a3468d1e49a5bc6fd9c541aab0533 Mon Sep 17 00:00:00 2001 From: yuki Date: Wed, 8 Oct 2025 21:57:38 -0300 Subject: [PATCH] second !cover fix --- commands/now_playing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/now_playing.py b/commands/now_playing.py index d4e74ac..7790949 100644 --- a/commands/now_playing.py +++ b/commands/now_playing.py @@ -78,7 +78,7 @@ def setup(bot: bot.Bot): user = bot.lastfm.get_user(username) if not user.get_now_playing: - last_played = user.get_recent_tracks(limit=1, cacheable=False) + last_played = user.get_recent_tracks(limit=2) albumobj = last_played[0].track.get_album() else: albumobj = user.get_now_playing().get_album()