mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-24 01:32:16 -05:00
Fix result passing
This commit is contained in:
parent
e11df08ea1
commit
d3e0e823e3
@ -601,7 +601,7 @@ public class KeyListFragment extends LoaderFragment
|
||||
if (holder.mMasterKeyId != null) {
|
||||
Intent safeSlingerIntent = new Intent(getActivity(), SafeSlingerActivity.class);
|
||||
safeSlingerIntent.putExtra(SafeSlingerActivity.EXTRA_MASTER_KEY_ID, holder.mMasterKeyId);
|
||||
startActivity(safeSlingerIntent);
|
||||
startActivityForResult(safeSlingerIntent, 0);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -130,7 +130,6 @@ public class SafeSlingerActivity extends ActionBarActivity {
|
||||
}
|
||||
|
||||
private void startExchange(long masterKeyId, int number) {
|
||||
Log.d(Constants.TAG, "number: " + number);
|
||||
// retrieve public key blob and start SafeSlinger
|
||||
Uri uri = KeychainContract.KeyRingData.buildPublicKeyRingUri(masterKeyId);
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user