mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
make lint
This commit is contained in:
parent
98b2fee71b
commit
5da6ab0aec
1 changed files with 12 additions and 13 deletions
|
@ -214,19 +214,18 @@ NotificationsManager::formatNotification(const mtx::responses::Notification ¬
|
|||
": ");
|
||||
|
||||
if (hasMarkup_) {
|
||||
if (hasImages_ &&
|
||||
mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Image)
|
||||
{
|
||||
QString imgPath = cacheImage(notification.event);
|
||||
if (imgPath.isNull())
|
||||
return mtx::accessors::formattedBodyWithFallback(notification.event).prepend(messageLeadIn);
|
||||
else
|
||||
return QString(
|
||||
"<img src=\"file:///" + imgPath +
|
||||
"\" alt=\"" +
|
||||
mtx::accessors::formattedBodyWithFallback(notification.event) +
|
||||
"\">")
|
||||
.prepend(messageLeadIn);
|
||||
if (hasImages_ && mtx::accessors::msg_type(notification.event) ==
|
||||
mtx::events::MessageType::Image) {
|
||||
QString imgPath = cacheImage(notification.event);
|
||||
if (imgPath.isNull())
|
||||
return mtx::accessors::formattedBodyWithFallback(notification.event)
|
||||
.prepend(messageLeadIn);
|
||||
else
|
||||
return QString("<img src=\"file:///" + imgPath + "\" alt=\"" +
|
||||
mtx::accessors::formattedBodyWithFallback(
|
||||
notification.event) +
|
||||
"\">")
|
||||
.prepend(messageLeadIn);
|
||||
}
|
||||
|
||||
return mtx::accessors::formattedBodyWithFallback(notification.event)
|
||||
|
|
Loading…
Reference in a new issue