make lint

This commit is contained in:
Loren Burkholder 2021-03-02 19:42:56 -05:00 committed by Nicolas Werner
parent 98b2fee71b
commit 5da6ab0aec
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 12 additions and 13 deletions

View File

@ -214,17 +214,16 @@ NotificationsManager::formatNotification(const mtx::responses::Notification &not
": "); ": ");
if (hasMarkup_) { if (hasMarkup_) {
if (hasImages_ && if (hasImages_ && mtx::accessors::msg_type(notification.event) ==
mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Image) mtx::events::MessageType::Image) {
{
QString imgPath = cacheImage(notification.event); QString imgPath = cacheImage(notification.event);
if (imgPath.isNull()) if (imgPath.isNull())
return mtx::accessors::formattedBodyWithFallback(notification.event).prepend(messageLeadIn); return mtx::accessors::formattedBodyWithFallback(notification.event)
.prepend(messageLeadIn);
else else
return QString( return QString("<img src=\"file:///" + imgPath + "\" alt=\"" +
"<img src=\"file:///" + imgPath + mtx::accessors::formattedBodyWithFallback(
"\" alt=\"" + notification.event) +
mtx::accessors::formattedBodyWithFallback(notification.event) +
"\">") "\">")
.prepend(messageLeadIn); .prepend(messageLeadIn);
} }