Chore: fix small typo
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 5 Feb 2025 22:31:21 +0000 (23:31 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 5 Feb 2025 22:31:21 +0000 (23:31 +0100)
music_assistant/controllers/players.py

index c294f2e213e42dc770cac101c9522c40fca1521d..423a00dbb77e5a6bbd3996507ae4bc1afff95ac3 100644 (file)
@@ -310,7 +310,7 @@ class PlayerController(CoreController):
         can_native_skip = False
         if active_queue := self.mass.player_queues.get(active_source_id):
             # active source is a MA queue
-            can_native_skip = not active_queue.flow_mode
+            can_native_skip = supports_native_skip and not active_queue.flow_mode
         elif supports_native_skip:
             # player has some other source active and native next/previous support
             active_source = next((x for x in player.source_list if x.id == active_source_id), None)