Add missing parsing of UTF-8 chars (#6889)

This commit is contained in:
todd-herbert
2025-05-26 06:12:52 +12:00
committed by GitHub
parent 75a49d3486
commit f223b8a55d
3 changed files with 8 additions and 8 deletions

View File

@@ -213,7 +213,7 @@ std::string InkHUD::NotificationApplet::getNotificationText(uint16_t widthAvaila
// Sender id
if (node && node->has_user)
text += node->user.short_name;
text += parseShortName(node);
else
text += hexifyNodeNum(message->sender);
@@ -227,7 +227,7 @@ std::string InkHUD::NotificationApplet::getNotificationText(uint16_t widthAvaila
// Sender id
if (node && node->has_user)
text += node->user.short_name;
text += parseShortName(node);
else
text += hexifyNodeNum(message->sender);