From 31da9c98f56e7a99716c6bc3218afe3e25adaeef Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 19:08:08 +0000 Subject: [PATCH] Sconvert to ascii --- notifications_client.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/notifications_client.py b/notifications_client.py index a65ddc18c..4564be25b 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -452,7 +452,8 @@ def _showLocalBox(notifyJson: {}, boxName: str, while len(posStr) < 3: posStr += ' ' if speakerJson.get('name'): - name = speakerJson['name'] + udata = speakerJson['name'].decode("utf-8") + name = udata.encode("ascii","ignore") else: name = '' if len(name) > 16: @@ -460,7 +461,8 @@ def _showLocalBox(notifyJson: {}, boxName: str, else: while len(name) < 16: name += ' ' - content = speakerJson['content'] + udata = speakerJson['content'].decode("utf-8") + content = udata.encode("ascii","ignore") if speakerJson.get('detectedLinks'): if len(speakerJson['detectedLinks']) > 0: content = '🔗' + content