diff options
| -rw-r--r-- | cli/app/search/live.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index c56b611..b49b4eb 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -460,10 +460,10 @@ class Interpolator: if cmd == 'setEncoding': self.set_encoding(json.loads(payload)) if cmd == 'play': - print("set_opt: paused True") + print("set_opt: paused False") self.paused = False if cmd == 'pause': - print("set_opt: paused False") + print("set_opt: paused True") self.paused = True if cmd == 'stop': self.stopped = True |
