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
<result code="2005"> <msg lang="en">Parameter value syntax error: </msg> <value xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd"> <contact:>email didn't pass validation</contact:> </value> </result>
the whole
<value xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd"> <contact:>email didn't pass validation</contact:>
bit in unnecessary there
the correct format would be
<result code="2005"> <msg lang="en">Parameter value syntax error: email didn't pass validation</msg> </result>
and as an added bonus it would be nice to return the problematic email address as well
To investigate: why did not tests nor nokogiri validator catch this?
The text was updated successfully, but these errors were encountered:
maricavor
Successfully merging a pull request may close this issue.
the whole
bit in unnecessary there
the correct format would be
and as an added bonus it would be nice to return the problematic email address as well
To investigate: why did not tests nor nokogiri validator catch this?
The text was updated successfully, but these errors were encountered: