Merge pull request #1367 from open-keychain/fingerprint-mismatch

Fixed fingerprint mismatch on web download of keys
This commit is contained in:
Dominik Schürmann
2015-06-25 09:14:42 +02:00

View File

@@ -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;
} }
} }