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
return result.map(uid => {
return {
return result.map(uid => ({
name: uid.name,
email: uid.address.toLowerCase(),
verified: false
};
});
}));
}
}