mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-07-07 14:35:29 +01:00
Fix request to join approved message not showing up.
This commit is contained in:
committed by
jeffrey-signal
parent
286ae25ac5
commit
942c155723
+8
-5
@@ -84,11 +84,14 @@ final class GroupStatePatcher {
|
||||
}
|
||||
|
||||
if (stateChain.getLatestState() == null && entry.getGroup() != null && current != null && current.isPlaceholderGroup) {
|
||||
DecryptedGroup previousState = entry.getGroup().newBuilder()
|
||||
.title(current.title)
|
||||
.avatar(current.avatar)
|
||||
.description(current.description)
|
||||
.build();
|
||||
DecryptedGroup previousState = entry.getGroup()
|
||||
.newBuilder()
|
||||
.title(current.title)
|
||||
.avatar(current.avatar)
|
||||
.description(current.description)
|
||||
.pendingMembers(current.pendingMembers)
|
||||
.requestingMembers(current.requestingMembers)
|
||||
.build();
|
||||
|
||||
stateChain.push(previousState, null);
|
||||
}
|
||||
|
||||
+2
-2
@@ -532,7 +532,7 @@ public final class DecryptedGroupUtil {
|
||||
int index = indexOfAciInRequestingList(requestingMembers, removedMember);
|
||||
|
||||
if (index == -1) {
|
||||
Log.w(TAG, "Deleted member on change not found in group");
|
||||
Log.w(TAG, "Deleted requesting member on change not found in group");
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -549,7 +549,7 @@ public final class DecryptedGroupUtil {
|
||||
int index = indexOfAciInRequestingList(requestingMembers, approvedMember.aciBytes);
|
||||
|
||||
if (index == -1) {
|
||||
Log.w(TAG, "Deleted member on change not found in group");
|
||||
Log.w(TAG, "Promote member on change not found in group");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user