Skip to content

Commit

Permalink
Fixed incorrect display name loading in conversation list
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Sep 11, 2024
1 parent e755641 commit 03a02a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nomadnet/Conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def conversation_list(app):
unread = True

if display_name == None and app_data:
display_name = app_data.decode("utf-8")
display_name = LXMF.display_name_from_app_data(app_data)

if display_name == None:
sort_name = ""
Expand Down

0 comments on commit 03a02a9

Please sign in to comment.