mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
fix display names for lxmf conversations
This commit is contained in:
parent
49c26ea0b0
commit
7b4db96ca6
1 changed files with 2 additions and 1 deletions
|
|
@ -1858,7 +1858,8 @@ class ReticulumMeshChat:
|
|||
# we will return this as the conversation name
|
||||
if lxmf_announce is not None and lxmf_announce.app_data is not None:
|
||||
try:
|
||||
return base64.b64decode(lxmf_announce.app_data).decode("utf-8")
|
||||
app_data_bytes = base64.b64decode(lxmf_announce.app_data)
|
||||
return LXMF.display_name_from_app_data(app_data_bytes)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue