Make names in group update descriptions tappable.

This commit is contained in:
Greyson Parrelli
2022-04-19 09:32:48 -04:00
committed by Alex Hart
parent 3b17a41415
commit e2cb535f3f
17 changed files with 378 additions and 215 deletions

View File

@@ -92,6 +92,10 @@ public class RecipientId implements Parcelable, Comparable<RecipientId>, Databas
@AnyThread
@SuppressLint("WrongThread")
private static @NonNull RecipientId from(@Nullable ServiceId serviceId, @Nullable String e164, boolean highTrust) {
if (serviceId != null && serviceId.isUnknown()) {
return RecipientId.UNKNOWN;
}
RecipientId recipientId = RecipientIdCache.INSTANCE.get(serviceId, e164);
if (recipientId == null) {