No key available

This commit is contained in:
M66B
2024-06-13 14:02:21 +02:00
parent 54cdbd07d7
commit 762f69453d
2 changed files with 7 additions and 4 deletions

View File

@@ -3494,18 +3494,20 @@ public class Helper {
@Override
public void run() {
if (owner.getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED)) {
if (selected == null)
if (selected == null) {
intf.onNothingSelected();
else
ToastEx.makeText(activity, R.string.title_no_key_selected, Toast.LENGTH_LONG).show();
} else
intf.onSelected(selected);
} else {
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_START)
public void onStart() {
owner.getLifecycle().removeObserver(this);
if (selected == null)
if (selected == null) {
intf.onNothingSelected();
else
ToastEx.makeText(activity, R.string.title_no_key_selected, Toast.LENGTH_LONG).show();
} else
intf.onSelected(selected);
}

View File

@@ -1257,6 +1257,7 @@
<string name="title_case_sensitive">Usernames and passwords are usually case sensitive</string>
<string name="title_login_before_send">Receive before sending</string>
<string name="title_client_certificate">Client certificate</string>
<string name="title_no_key_selected">No key selected or no keys available</string>
<string name="title_realm">Realm</string>
<string name="title_use_ip">Use local IP address instead of host name</string>
<string name="title_ehlo">Custom HELO/EHLO identification</string>