Chore: Ignore another spammy log line for now in librespot
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Mon, 13 Jan 2025 22:21:26 +0000 (23:21 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Mon, 13 Jan 2025 22:21:26 +0000 (23:21 +0100)
music_assistant/providers/spotify_connect/__init__.py

index 1af556b0532f5a9c92e52663d4e17caaa1967fcf..6b1556e0ae6a398bf068c38bbe18817c930b7894 100644 (file)
@@ -287,6 +287,8 @@ class SpotifyConnectProvider(MusicProvider):
                     continue
                 if "dropping truncated packet" in line:
                     continue
+                if "couldn't parse packet from " in line:
+                    continue
                 self.logger.debug(line)
         except asyncio.CancelledError:
             await librespot.close(True)