Cleanup pgp.parseUserIds()
This commit is contained in:
parent
3a551d2cdc
commit
8e89bc6959
@ -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
|
}));
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user