From 8ec95493f7188080ea2802f09c31fbd3c675bdde Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 16 Mar 2021 18:08:18 +0000 Subject: [PATCH] Capital DM --- notifications_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notifications_client.py b/notifications_client.py index 9b5135106..c714f9831 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -369,7 +369,8 @@ def _readLocalBoxPost(boxName: str, index: int, content = speakerJson['content'] sayStr = 'Reading ' + boxName + ' post ' + str(index) + '.' - _sayCommand(sayStr, sayStr, screenreader, systemLanguage, espeak) + sayStr2 = sayStr.replace(' dm ', ' DM ') + _sayCommand(sayStr, sayStr2, screenreader, systemLanguage, espeak) if speakerJson.get('id') and isPGPEncrypted(content): sayStr = 'Encrypted message. Please enter your passphrase.'