Fix SIGNATURE_SUCCESS_CERTIFIED
This commit is contained in:
@@ -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()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user