Fix request to join approved message not showing up.

This commit is contained in:
Cody Henthorne
2025-12-17 12:23:58 -05:00
committed by jeffrey-signal
parent 286ae25ac5
commit 942c155723
2 changed files with 10 additions and 7 deletions

View File

@@ -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);
}