summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorIvan Pavluk <ivan@pavluk.org>2022-02-13 04:46:15 +0700
committerIvan Pavluk <ivan@pavluk.org>2022-02-13 04:51:11 +0700
commit2a2ef2f2e5dbce97da9b0b73f9128991003fadcf (patch)
treee2f9797fef46c34bf0b4934ca8106c52742dc0ea /src
parentFix application name on Wayland in flatpak (diff)
downloadnheko-2a2ef2f2e5dbce97da9b0b73f9128991003fadcf.tar.xz
use shortcode as a fallback for custom emote title
Some clients (e.g. FluffyChat) don't have a UI for specifying the emote
title, and instead use the shortcode as the title. This sets the title
accordingly even if the emote was added through such a client and only
has a shortcode.
Diffstat (limited to 'src')
-rw-r--r--src/CombinedImagePackModel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CombinedImagePackModel.cpp b/src/CombinedImagePackModel.cpp

index 27b96b92..58400fb1 100644 --- a/src/CombinedImagePackModel.cpp +++ b/src/CombinedImagePackModel.cpp
@@ -60,7 +60,9 @@ CombinedImagePackModel::data(const QModelIndex &index, int role) const return QStringLiteral( "<img data-mx-emoticon height=32 src=\"%1\" alt=\"%2\" title=\"%2\">") .arg(QString::fromStdString(images[index.row()].image.url).toHtmlEscaped(), - QString::fromStdString(images[index.row()].image.body)); + images[index.row()].image.body.length() > 0 + ? QString::fromStdString(images[index.row()].image.body) + : images[index.row()].shortcode); case Roles::Url: return QString::fromStdString(images[index.row()].image.url); case CompletionModel::SearchRole: