From d6d76539f33f2b4e8cedbd91b6e02a5751d7f07f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 16 Mar 2021 18:23:59 +0000 Subject: [PATCH] Indicators off by default --- notifications_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/notifications_client.py b/notifications_client.py index 021adf8b9..eb2253d3b 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -821,9 +821,11 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str, if not os.path.isdir(soundsDir): soundsDir = 'theme/default/sounds' + indicatorDM = False if speakerJson.get('direct'): if speakerJson['direct'] is True: indicatorDM = speakerJson.get('direct') + indicatorReplies = False if speakerJson.get('replyToYou'): if speakerJson['replyToYou'] is True: indicatorReplies = speakerJson.get('replyToYou')