libs/openpgp-keychain 🔗
@@ -1 +1 @@
-Subproject commit 5f3c9f3eb9c3d2635a3f16d43742d7a12576474c
+Subproject commit ea2f3e1444ba0597425c8fb7f820f981b3da8cea
Daniel Gultsch created
libs/openpgp-keychain | 2 +-
src/eu/siacs/conversations/crypto/PgpEngine.java | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
@@ -1 +1 @@
-Subproject commit 5f3c9f3eb9c3d2635a3f16d43742d7a12576474c
+Subproject commit ea2f3e1444ba0597425c8fb7f820f981b3da8cea
@@ -33,7 +33,7 @@ public class PgpEngine {
throw new UserInputRequiredException((PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
case OpenPgpApi.RESULT_CODE_ERROR:
throw new OpenPgpException(
- (OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERRORS));
+ (OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
default:
return null;
}
@@ -91,7 +91,7 @@ public class PgpEngine {
break;
case OpenPgpApi.RESULT_CODE_ERROR:
throw new OpenPgpException(
- (OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERRORS));
+ (OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
}
return 0;
}