mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-24 01:32:16 -05:00
prevent null byte[] in case of encoding exc
This commit is contained in:
parent
e97630b75e
commit
cec6c3ab5a
@ -112,11 +112,11 @@ public class IntentActivity extends PreferenceActivity {
|
|||||||
byte[] pubkey = null;
|
byte[] pubkey = null;
|
||||||
try {
|
try {
|
||||||
pubkey = TEST_PUBKEY.getBytes("UTF-8");
|
pubkey = TEST_PUBKEY.getBytes("UTF-8");
|
||||||
} catch (UnsupportedEncodingException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
intent.putExtra(OpenKeychainIntents.IMPORT_KEY_EXTRA_KEY_BYTES, pubkey);
|
intent.putExtra(OpenKeychainIntents.IMPORT_KEY_EXTRA_KEY_BYTES, pubkey);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
Log.e(Constants.TAG, "UnsupportedEncodingException", e);
|
||||||
|
}
|
||||||
} catch (ActivityNotFoundException e) {
|
} catch (ActivityNotFoundException e) {
|
||||||
Toast.makeText(IntentActivity.this, "Activity not found!", Toast.LENGTH_LONG).show();
|
Toast.makeText(IntentActivity.this, "Activity not found!", Toast.LENGTH_LONG).show();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user