From 296fbfc3f4c757d4e6d2cf8ff784a4c699c73d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Sun, 8 Sep 2019 15:50:31 +0200 Subject: [PATCH] Ignore setGain commands rather than erroring --- supysonic/jukebox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supysonic/jukebox.py b/supysonic/jukebox.py index 2360bb6..5458b67 100644 --- a/supysonic/jukebox.py +++ b/supysonic/jukebox.py @@ -125,7 +125,7 @@ class Jukebox(object): shuffle(self.__playlist) def setgain(self, gain): - raise NotImplementedError() + pass def terminate(self): self.__stop.set()