mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-17 07:30:14 -05:00
Fix nullpointer in EncryptKeyCompletionView
This commit is contained in:
parent
5ad50b99a2
commit
e91dc022fb
@ -156,7 +156,7 @@ public class EncryptKeyCompletionView extends TokenCompleteTextView
|
||||
|
||||
@Override
|
||||
public void showDropDown() {
|
||||
if (mAdapter.getCursor().isClosed()) {
|
||||
if (mAdapter == null || mAdapter.getCursor().isClosed()) {
|
||||
return;
|
||||
}
|
||||
super.showDropDown();
|
||||
|
Loading…
Reference in New Issue
Block a user