We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 892b145 commit 10295a1Copy full SHA for 10295a1
omnishuffle/player.py
@@ -100,9 +100,10 @@ def play(self, track: Track):
100
self._loading = True
101
102
# Stop current playback before starting new track
103
- if self._using_spotify_connect and self._spotify_source:
+ # Always try to pause Spotify (not just when _using_spotify_connect)
104
+ if self._spotify_source:
105
try:
- self._spotify_source.pause_playback() # No device_id = pause active device
106
+ self._spotify_source.pause_playback()
107
except Exception:
108
pass
109
0 commit comments