Use person's name in call update text.

pull/1/head
Greyson Parrelli 7 years ago
parent 39b27a9d7a
commit 0ced767ef2

@ -97,7 +97,7 @@ public abstract class MessageRecord extends DisplayRecord {
} else if (isGroupQuit()) {
return new SpannableString(context.getString(R.string.ConversationItem_group_action_left, getIndividualRecipient().toShortString()));
} else if (isIncomingCall()) {
return new SpannableString(context.getString(R.string.MessageRecord_called_you));
return new SpannableString(context.getString(R.string.MessageRecord_s_called_you, getIndividualRecipient().toShortString()));
} else if (isOutgoingCall()) {
return new SpannableString(context.getString(R.string.MessageRecord_you_called));
} else if (isMissedCall()) {

Loading…
Cancel
Save