Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -487,10 +487,9 @@ private static ConversationsList createConversationsList() {
// Prepare the message line
if (conversation.mIsGroup) {
if (authorFirstName == null) {
// authorFullName might be null as well. In that case, we won't
// show an author. That is better than showing all the group
// names again on the 2nd line.
authorFirstName = authorFullName;
authorFirstName = authorFullName != null
? authorFullName
: convMessageData.getSenderDisplayDestination();
}
} else {
// don't recompute this if we don't need to
Expand Down