Cleanup pgp.parseUserIds()

This commit is contained in:
Tankred Hase 2016-06-12 22:17:02 +02:00
parent 3a551d2cdc
commit 8e89bc6959

View File

@ -131,13 +131,11 @@ class PGP {
} }
} }
// map to local user id object format // map to local user id object format
return result.map(uid => { return result.map(uid => ({
return { name: uid.name,
name: uid.name, email: uid.address.toLowerCase(),
email: uid.address.toLowerCase(), verified: false
verified: false }));
};
});
} }
} }