From 85f53d8e6e73aa26ea529bdce4f64657b0492927 Mon Sep 17 00:00:00 2001 From: Langevin Gael Date: Mon, 9 Dec 2024 21:56:19 +0100 Subject: [PATCH] fixed 1 vs 0 --- gestures/startRadio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gestures/startRadio.py b/gestures/startRadio.py index e6b0ca4d..9ad8f0ec 100644 --- a/gestures/startRadio.py +++ b/gestures/startRadio.py @@ -18,7 +18,7 @@ def stopRadio(): print("Radio stopped") audiocfg = audioPlayer.getConfig() if audiocfg.stream == 1: - audiocfg.stream = 1 + audiocfg.stream = 0 audioPlayer.save() audioPlayer.apply(audiocfg) audioPlayer.broadcastState() \ No newline at end of file