fixed regression that hid enter jid button in block list view
This commit is contained in:
parent
1536075088
commit
c11dd71510
|
@ -26,6 +26,7 @@ public class BlocklistActivity extends AbstractSearchableListItemActivity implem
|
|||
BlockContactDialog.show(BlocklistActivity.this, (Contact) getListItems().get(position));
|
||||
return true;
|
||||
});
|
||||
this.binding.fab.show();
|
||||
this.binding.fab.setOnClickListener((v)->showEnterJidDialog());
|
||||
}
|
||||
|
||||
|
@ -39,7 +40,7 @@ public class BlocklistActivity extends AbstractSearchableListItemActivity implem
|
|||
}
|
||||
filterContacts();
|
||||
Fragment fragment = getSupportFragmentManager().findFragmentByTag(FRAGMENT_TAG_DIALOG);
|
||||
if (fragment != null && fragment instanceof OnBackendConnected) {
|
||||
if (fragment instanceof OnBackendConnected) {
|
||||
((OnBackendConnected) fragment).onBackendConnected();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue