Skip to content
Snippets Groups Projects
Commit 463cee71 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix wrong font used in emoji escape

parent 6aabe9d5
No related branches found
No related tags found
No related merge requests found
Pipeline #601 passed
......@@ -71,7 +71,7 @@ utils::replaceEmoji(const QString &body)
if (utils::codepointIsEmoji(code)) {
if (!insideFontBlock) {
fmtBody += QString("<font face=\"" +
UserSettings::instance()->font() + "\">");
UserSettings::instance()->emojiFont() + "\">");
insideFontBlock = true;
}
......
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