From 32d7ce06ce3b684ad04dcc5d5b9d29ca15eb5c5f Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 27 Mar 2025 11:37:11 +0100 Subject: [PATCH] Fix: await missing in scrobbler logic --- music_assistant/helpers/scrobbler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/helpers/scrobbler.py b/music_assistant/helpers/scrobbler.py index 3ae9d0a2..197c7646 100644 --- a/music_assistant/helpers/scrobbler.py +++ b/music_assistant/helpers/scrobbler.py @@ -68,7 +68,7 @@ class ScrobblerHelper: if report.is_playing and ( self.currently_playing is None or self.currently_playing != report.uri ): - update_now_playing() + await update_now_playing() if self.should_scrobble(report): await scrobble() -- 2.34.1