We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:
The library fails to parse a string when one or more address contains the : char.
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": "" } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
when it should be
The text was updated successfully, but these errors were encountered: