diff --git a/src/contactmodel.cpp b/src/contactmodel.cpp index c9c94f16049dfc8a3a93521e7ecf89d1a7ca7aba..fa98b7f171e7c2c4c60a8ac9ea8c4fd184b6188a 100644 --- a/src/contactmodel.cpp +++ b/src/contactmodel.cpp @@ -549,10 +549,6 @@ ContactModel::bestIdForContact(const QString& contactUri) const { try { auto contact = getContact(contactUri); - auto alias = contact.profileInfo.alias.simplified(); - if (alias.isEmpty()) { - return {}; - } return bestIdFromContactInfo(contact); } catch (const std::out_of_range& e) { qDebug() << "ContactModel::bestIdForContact" << e.what(); @@ -930,7 +926,9 @@ ContactModelPimpl::addToContacts(const QString& contactUri, updateProfile = true; contactInfo.profileInfo.alias = profileInfo.alias; } - auto oldAvatar = lrc::api::Lrc::cacheAvatars.load()? contactInfo.profileInfo.avatar : storage::avatar(linked.owner.id, contactUri); + auto oldAvatar = lrc::api::Lrc::cacheAvatars.load() + ? contactInfo.profileInfo.avatar + : storage::avatar(linked.owner.id, contactUri); if (!profileInfo.avatar.isEmpty() && oldAvatar != profileInfo.avatar) { updateProfile = true; contactInfo.profileInfo.avatar = profileInfo.avatar;