From 1e3a0d9b2e3fd8d4a605a7c1d342b457e281d952 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 8 Nov 2022 13:49:15 -0600 Subject: [PATCH] mastodon: Avoid playing sounds on first buffer start --- src/controller/mastodon/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/mastodon/handler.py b/src/controller/mastodon/handler.py index d25dc077..5fbcf3f4 100644 --- a/src/controller/mastodon/handler.py +++ b/src/controller/mastodon/handler.py @@ -69,6 +69,6 @@ class Handler(object): def start_buffer(self, controller, buffer): try: - buffer.start_stream() + buffer.start_stream(play_sound=False) except Exception as err: log.exception("Error %s starting buffer %s on account %s, with args %r and kwargs %r." % (str(err), buffer.name, buffer.account, buffer.args, buffer.kwargs)) \ No newline at end of file