From: Marcel van der Veldt Date: Thu, 27 Mar 2025 10:37:11 +0000 (+0100) Subject: Fix: await missing in scrobbler logic X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=32d7ce06ce3b684ad04dcc5d5b9d29ca15eb5c5f;p=music-assistant-server.git Fix: await missing in scrobbler logic --- 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()