mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-12 05:00:22 -05:00
select correct master key for signing public key with
This commit is contained in:
parent
4fc4f09e84
commit
2ccd3796c4
@ -295,7 +295,8 @@ public class SignKeyActivity extends SherlockFragmentActivity {
|
|||||||
switch (requestCode) {
|
switch (requestCode) {
|
||||||
case Id.request.secret_keys: {
|
case Id.request.secret_keys: {
|
||||||
if (resultCode == RESULT_OK) {
|
if (resultCode == RESULT_OK) {
|
||||||
mMasterKeyId = data.getLongExtra(EXTRA_KEY_ID, 0);
|
Bundle bundle = data.getExtras();
|
||||||
|
mMasterKeyId = bundle.getLong(SelectSecretKeyActivity.RESULT_EXTRA_MASTER_KEY_ID);
|
||||||
|
|
||||||
// re-enable the sign button so the user can initiate the sign process
|
// re-enable the sign button so the user can initiate the sign process
|
||||||
Button sign = (Button) findViewById(R.id.sign);
|
Button sign = (Button) findViewById(R.id.sign);
|
||||||
|
Loading…
Reference in New Issue
Block a user