Convert to string

merge-requests/21/head
Bob Mottram 2021-03-15 19:10:08 +00:00
parent 31da9c98f5
commit f7f17aef4a
1 changed files with 4 additions and 4 deletions

View File

@ -452,8 +452,8 @@ def _showLocalBox(notifyJson: {}, boxName: str,
while len(posStr) < 3:
posStr += ' '
if speakerJson.get('name'):
udata = speakerJson['name'].decode("utf-8")
name = udata.encode("ascii","ignore")
udata = speakerJson['name']
name = str(udata.encode("ascii", "ignore"))
else:
name = ''
if len(name) > 16:
@ -461,8 +461,8 @@ def _showLocalBox(notifyJson: {}, boxName: str,
else:
while len(name) < 16:
name += ' '
udata = speakerJson['content'].decode("utf-8")
content = udata.encode("ascii","ignore")
udata = speakerJson['content']
content = str(udata.encode("ascii","ignore"))
if speakerJson.get('detectedLinks'):
if len(speakerJson['detectedLinks']) > 0:
content = '🔗' + content