mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 13:27:46 +00:00
follow bfdccf4d920f5172a3d88ac0358e0b06ad5fe520, missing check
This commit is contained in:
parent
1db4f7bbc3
commit
bb8cc0412f
@ -29,6 +29,8 @@ import org.eclipse.jgit.api.CommitCommand;
|
|||||||
import org.eclipse.jgit.api.Git;
|
import org.eclipse.jgit.api.Git;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
public class PasswordStore extends AppCompatActivity {
|
public class PasswordStore extends AppCompatActivity {
|
||||||
private static final String TAG = "PwdStrAct";
|
private static final String TAG = "PwdStrAct";
|
||||||
@ -223,9 +225,9 @@ public class PasswordStore extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final String keyId = settings.getString("openpgp_key_ids", "");
|
final Set<String> keyIds = settings.getStringSet("openpgp_key_ids_set", new HashSet<String>());
|
||||||
|
|
||||||
if (keyId != null && keyId.isEmpty())
|
if (keyIds.isEmpty())
|
||||||
new AlertDialog.Builder(this)
|
new AlertDialog.Builder(this)
|
||||||
.setMessage(this.getResources().getString(R.string.key_dialog_text))
|
.setMessage(this.getResources().getString(R.string.key_dialog_text))
|
||||||
.setPositiveButton(this.getResources().getString(R.string.dialog_positive), new DialogInterface.OnClickListener() {
|
.setPositiveButton(this.getResources().getString(R.string.dialog_positive), new DialogInterface.OnClickListener() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user