Skip to content
New issue

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

Support for multiple @ characters #66

Open
mattBrzezinski opened this issue Sep 25, 2019 · 1 comment
Open

Support for multiple @ characters #66

mattBrzezinski opened this issue Sep 25, 2019 · 1 comment

Comments

@mattBrzezinski
Copy link
Member

mattBrzezinski commented Sep 25, 2019

X-Reference from FTPClient.jl

When using multiple @ characters URIParser fails with various errors depending on the amount of @ characters passed in.

Examples:

using URIParser

URI("ftp://user@example.com:password@example.com")

> ERROR: Port must be numeric (decimal)
using URIParser

URI("ftp://user@example.com:p@ssword@example.com")

> ERROR: Port must be numeric (decimal)
using URIParser

URI("ftp://user:p@ssword@example.com")

> ERROR: Unexpected character '@' in host
@mattBrzezinski mattBrzezinski changed the title URIParser not supprting multiple @ characters Support for multiple @ characters Sep 25, 2019
@mattBrzezinski
Copy link
Member Author

Current work around is to replace @ with %40, which resolves this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant