mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-19 08:09:12 +01:00
Fix request to join approved message not showing up.
This commit is contained in:
committed by
jeffrey-signal
parent
286ae25ac5
commit
942c155723
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user