You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URL parsing code (HTTPRequest::parseUrl) works for valid URLs but can have confusing errors (or maybe even nonexistent ones sometimes) for invalid URLs. For example https:\\example.com might throw an exception related to stoi trying to parse a non-integer character, instead of saying something about the schema not being valid.
The text was updated successfully, but these errors were encountered:
The URL parsing code (
HTTPRequest::parseUrl
) works for valid URLs but can have confusing errors (or maybe even nonexistent ones sometimes) for invalid URLs. For examplehttps:\\example.com
might throw an exception related tostoi
trying to parse a non-integer character, instead of saying something about the schema not being valid.The text was updated successfully, but these errors were encountered: