Fix bug that prevented verification of multiple user ids

This commit is contained in:
Tankred Hase
2016-06-17 19:56:33 +02:00
parent 7c16ccd40a
commit 516df397c2
2 changed files with 16 additions and 1 deletions

View File

@@ -138,7 +138,7 @@ class PublicKey {
}
// check if user ids of this key have already been verified in another key
let verified = yield this.getVerified(key);
if (verified) {
if (verified && verified.keyId !== keyId) {
util.throw(304, 'Key for this user already exists');
}
// flag the user id as verified