Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(ui): Display most recent group member's name instead of <Empty>
Browse files Browse the repository at this point in the history
Fix #5294
  • Loading branch information
anthonybilinski committed Aug 23, 2018
1 parent 8cfc1f0 commit 11131fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/model/group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ void Group::updatePeer(int peerId, QString name)
if (f != nullptr) {
// use the displayed name from the friends list
toxpks[peerKey] = f->getDisplayedName();
} else {
emit userListChanged(groupId, toxpks);
}
emit userListChanged(groupId, toxpks);
}

void Group::setName(const QString& newTitle)
Expand Down

0 comments on commit 11131fa

Please sign in to comment.