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

Fix broken avatars in quick switcher

parent c32a8bc2
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,8 @@ RoomItem::RoomItem(QWidget *parent, const RoomSearchResult &res)
topLayout_->addWidget(avatar_);
topLayout_->addWidget(roomName_, 1);
avatar_->setImage(QString::fromStdString(res.info.avatar_url));
if (!res.info.avatar_url.empty())
avatar_->setImage(QString::fromStdString(res.info.avatar_url));
}
void
......@@ -128,7 +129,11 @@ RoomItem::updateItem(const RoomSearchResult &result)
roomName_->setText(name);
avatar_->setImage(QString::fromStdString(result.info.avatar_url));
// if there is not an avatar set for the room, we want to at least show the letter
// correctly!
avatar_->setLetter(utils::firstChar(name));
if (!result.info.avatar_url.empty())
avatar_->setImage(QString::fromStdString(result.info.avatar_url));
}
void
......
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