We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c2235 commit 8660545Copy full SHA for 8660545
streams/spotify_volume_handler.py
@@ -174,9 +174,9 @@ def update_spotify_volume(self):
174
if handler.spotify.volume is None:
175
handler.update_spotify_volume()
176
event = handler.event_queue.get(timeout=2)
177
- if event in "spotify_volume_changed":
+ if event == "spotify_volume_changed":
178
handler.update_amplipi_volume()
179
- elif event in "amplipi_volume_changed":
+ elif event == "amplipi_volume_changed":
180
181
except queue.Empty:
182
continue
0 commit comments