Fix SIGNATURE_SUCCESS_CERTIFIED

This commit is contained in:
Dominik Schürmann 2014-04-14 01:19:05 +02:00
parent 13ffd2038d
commit 4a2c3385d6

View File

@ -443,11 +443,11 @@ public class PgpDecryptVerify {
// get certification status of this key // get certification status of this key
Object data = mProviderHelper.getGenericData( Object data = mProviderHelper.getGenericData(
KeychainContract.UserIds.buildUserIdsUri(Long.toString(masterKeyId)), KeychainContract.KeyRings.buildUnifiedKeyRingUri(Long.toString(masterKeyId)),
KeyRings.VERIFIED, KeyRings.VERIFIED,
ProviderHelper.FIELD_TYPE_INTEGER); ProviderHelper.FIELD_TYPE_INTEGER);
isSignatureKeyCertified = (Long) data > 0; isSignatureKeyCertified = ((Long) data > 0);
} else { } else {
// no key in our database -> return "unknown pub key" status including the first key id // no key in our database -> return "unknown pub key" status including the first key id
if (!sigList.isEmpty()) { if (!sigList.isEmpty()) {
@ -639,11 +639,11 @@ public class PgpDecryptVerify {
// get certification status of this key // get certification status of this key
Object data = mProviderHelper.getGenericData( Object data = mProviderHelper.getGenericData(
KeychainContract.UserIds.buildUserIdsUri(Long.toString(masterKeyId)), KeychainContract.KeyRings.buildUnifiedKeyRingUri(Long.toString(masterKeyId)),
KeyRings.VERIFIED, KeyRings.VERIFIED,
ProviderHelper.FIELD_TYPE_INTEGER); ProviderHelper.FIELD_TYPE_INTEGER);
isSignatureKeyCertified = (Long) data > 0; isSignatureKeyCertified = ((Long) data > 0);
} else { } else {
// no key in our database -> return "unknown pub key" status including the first key id // no key in our database -> return "unknown pub key" status including the first key id
if (!sigList.isEmpty()) { if (!sigList.isEmpty()) {