Switch back to using upstream email-address library (#998)
This commit is contained in:
parent
810b8daab2
commit
528fbfb017
5
npm-shrinkwrap.json
generated
5
npm-shrinkwrap.json
generated
|
@ -2204,8 +2204,9 @@
|
|||
}
|
||||
},
|
||||
"email-addresses": {
|
||||
"version": "github:openpgpjs/email-addresses#686743c6452b44bafcd06d47db7f36ddf3f3f118",
|
||||
"from": "github:openpgpjs/email-addresses#686743c6452b44bafcd06d47db7f36ddf3f3f118",
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz",
|
||||
"integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==",
|
||||
"dev": true
|
||||
},
|
||||
"encodeurl": {
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
"seek-bzip": "github:openpgpjs/seek-bzip#6187fc025851d35c4e104a25ea15a10b9b8d6f7d",
|
||||
"tweetnacl": "github:openpgpjs/tweetnacl-js#1ef755f2b252a3e328ac739848d00e0dad76be2d",
|
||||
"web-stream-tools": "github:openpgpjs/web-stream-tools#dc4b05e8a272b45819233f3df735423432beacfc",
|
||||
"email-addresses": "github:openpgpjs/email-addresses#686743c6452b44bafcd06d47db7f36ddf3f3f118"
|
||||
"email-addresses": "3.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"asn1.js": "^5.0.0",
|
||||
|
|
|
@ -677,7 +677,7 @@ export default {
|
|||
throw new Error('User id string is too long');
|
||||
}
|
||||
try {
|
||||
const { name, address: email, comments } = emailAddresses.parseOneAddress(userid);
|
||||
const { name, address: email, comments } = emailAddresses.parseOneAddress({ input: userid, atInDisplayName: true });
|
||||
return { name, email, comment: comments.replace(/^\(|\)$/g, '') };
|
||||
} catch(e) {
|
||||
throw new Error('Invalid user id format');
|
||||
|
|
Loading…
Reference in New Issue
Block a user