Add 'on another device' to participants description

This commit is contained in:
Alex Hart
2021-01-14 07:03:19 -04:00
parent 790f8426ac
commit f8c053cc96
2 changed files with 18 additions and 6 deletions

View File

@@ -113,6 +113,18 @@ public final class CallParticipant {
}
}
public @NonNull String getShortRecipientDisplayName(@NonNull Context context) {
if (recipient.isSelf() && isPrimary()) {
return context.getString(R.string.CallParticipant__you);
} else if (recipient.isSelf()) {
return context.getString(R.string.CallParticipant__you_on_another_device);
} else if (isPrimary()) {
return recipient.getShortDisplayName(context);
} else {
return context.getString(R.string.CallParticipant__s_on_another_device, recipient.getShortDisplayName(context));
}
}
public @Nullable IdentityKey getIdentityKey() {
return identityKey;
}