diff options
Diffstat (limited to 'OpenPGP-Keychain-API/example-app/src/main/java')
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java b/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java index 21eca36d6..2f7f085c2 100644 --- a/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java +++ b/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java @@ -185,7 +185,7 @@ public class OpenPgpProviderActivity extends Activity {                          Log.e(Constants.TAG, "UnsupportedEncodingException", e);                      } -                    if (result.getBoolean(OpenPgpConstants.RESULT_SIGNATURE, false)) { +                    if (result.containsKey(OpenPgpConstants.RESULT_SIGNATURE)) {                          OpenPgpSignatureResult sigResult                                  = result.getParcelable(OpenPgpConstants.RESULT_SIGNATURE);                          handleSignature(sigResult); | 
