mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-22 01:40:07 +01:00
Refactor Message Request logic to fix some GV1->GV2 bugs.
This commit is contained in:
committed by
Alex Hart
parent
ce44e3949c
commit
43e3ef2bee
@@ -966,7 +966,10 @@ public final class GroupDatabase extends Database {
|
||||
}
|
||||
}
|
||||
|
||||
boolean isPendingMember(@NonNull Recipient recipient) {
|
||||
/**
|
||||
* Whether or not the recipient is a pending member.
|
||||
*/
|
||||
public boolean isPendingMember(@NonNull Recipient recipient) {
|
||||
if (isV2Group()) {
|
||||
Optional<UUID> uuid = recipient.getUuid();
|
||||
if (uuid.isPresent()) {
|
||||
|
||||
Reference in New Issue
Block a user