Use person's name in call update text.
This commit is contained in:
parent
39b27a9d7a
commit
0ced767ef2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue