-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Description
The library fails to parse a string when one or more address contains the :
char.
Example
Parsing the string
John Doe :: Doe Industries <[email protected]>, Jane Doe :: Doe Industries <[email protected]>, [email protected]
returns this object:
[
{
"group": [
{
"group": [
{
"address": "[email protected]",
"name": "Doe Industries"
},
{
"group": [
{
"group": [
{
"address": "[email protected]",
"name": "Doe Industries"
},
{
"address": "[email protected]",
"name": ""
}
]
}
],
"name": "Jane Doe"
}
]
}
],
"name": "John Doe"
}
]
when it should be
[
{
"address": "[email protected]",
"name": "John Doe :: Doe Industries"
},
{
"address": "[email protected]",
"name": "Jane Doe :: Doe Industries"
},
{
"address": "[email protected]",
"name": ""
}
]
Metadata
Metadata
Assignees
Labels
No labels