Fix issue where conversation hero avatars didn't show up.
This commit is contained in:
parent
bac04dea8d
commit
1d912c0db2
1 changed files with 4 additions and 1 deletions
|
@ -151,7 +151,10 @@ public class MessageRequestViewModel extends ViewModel {
|
||||||
|
|
||||||
private void loadRecipient() {
|
private void loadRecipient() {
|
||||||
liveRecipient.observeForever(recipientObserver);
|
liveRecipient.observeForever(recipientObserver);
|
||||||
SignalExecutors.BOUNDED.execute(liveRecipient::refresh);
|
SignalExecutors.BOUNDED.execute(() -> {
|
||||||
|
liveRecipient.refresh();
|
||||||
|
recipient.postValue(liveRecipient.get());
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadGroups() {
|
private void loadGroups() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue