Fix block request button not showing up always.
This commit is contained in:
parent
daedb8261d
commit
7e0cd99f48
1 changed files with 2 additions and 2 deletions
|
@ -270,7 +270,7 @@ public final class ConversationUpdateItem extends FrameLayout
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static final class GroupDataManager {
|
private final class GroupDataManager {
|
||||||
|
|
||||||
private final Observer<Recipient> recipientObserver;
|
private final Observer<Recipient> recipientObserver;
|
||||||
private final Observer<Boolean> isSelfAdminSetter;
|
private final Observer<Boolean> isSelfAdminSetter;
|
||||||
|
@ -284,7 +284,7 @@ public final class ConversationUpdateItem extends FrameLayout
|
||||||
this.recipientObserver = observer;
|
this.recipientObserver = observer;
|
||||||
this.isSelfAdminSetter = isSelfAdmin -> {
|
this.isSelfAdminSetter = isSelfAdmin -> {
|
||||||
this.isSelfAdmin = isSelfAdmin;
|
this.isSelfAdmin = isSelfAdmin;
|
||||||
recipientObserver.onChanged(conversationRecipient);
|
present(conversationMessage, nextMessageRecord, conversationRecipient, isMessageRequestAccepted);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue