mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
Bugfix: addressparser() didn't handle groups properly
This commit is contained in:
parent
ebf429215b
commit
a696d6c0a1
4 changed files with 27 additions and 25 deletions
|
|
@ -59,7 +59,7 @@ const
|
|||
|
||||
base64_encode = text => btoa(unescape(encodeURIComponent(text))).match(/.{1,76}/g).join('\r\n'),
|
||||
|
||||
getEmail = value => addressparser(value)[0]?.address || false,
|
||||
getEmail = value => addressparser(value)[0]?.email || false,
|
||||
|
||||
/**
|
||||
* @param {Array} aList
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue