fixed fingerprint mismatch issue
This commit is contained in:
@@ -219,7 +219,7 @@ public class UncachedKeyRing {
|
|||||||
Iterator<PGPPublicKey> it = mRing.getPublicKeys();
|
Iterator<PGPPublicKey> it = mRing.getPublicKeys();
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
if (KeyFormattingUtils.convertFingerprintToHex(
|
if (KeyFormattingUtils.convertFingerprintToHex(
|
||||||
it.next().getFingerprint()).equals(expectedFingerprint)) {
|
it.next().getFingerprint()).equalsIgnoreCase(expectedFingerprint)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user