diff --git a/src/CombinedImagePackModel.cpp b/src/CombinedImagePackModel.cpp
index 58400fb1a839142eeec82979d3cd6c89bf4bc868..6dadbef4530ac417a88cdf162190c263e3d920f8 100644
--- a/src/CombinedImagePackModel.cpp
+++ b/src/CombinedImagePackModel.cpp
@@ -60,7 +60,7 @@ 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(),
-                   images[index.row()].image.body.length() > 0
+                   !images[index.row()].image.body.empty()
                      ? QString::fromStdString(images[index.row()].image.body)
                      : images[index.row()].shortcode);
         case Roles::Url: