Skip to content
Snippets Groups Projects
Commit 992fdb7d authored by Sébastien Blin's avatar Sébastien Blin
Browse files

TextMessageDelegate: fix "Deleted message"

Because we moved from markdown to rich text, we should use "<i>"
instead of "*"

Change-Id: Ie67f1db247534d96a7a5432b193cf327418fd21b
parent fa406c70
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ SBSMessageBase {
MessagesAdapter.parseMessage(Id, Body, UtilsAdapter.getAppValue(Settings.DisplayHyperlinkPreviews), root.colorUrl, CurrentConversation.color);
return ""
}
return (ParsedBody !== "") ? ParsedBody : "*(" + JamiStrings.deletedMessage + ")*";
return (ParsedBody !== "") ? ParsedBody : "<i>(" + JamiStrings.deletedMessage + ")</i>";
}
horizontalAlignment: Text.AlignLeft
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment