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
When domains are entered without an "http://" or "https://" prefix, they are not being processed correctly. This issue affects the URL normalization process, causing failures in subsequent operations that depend on properly formatted URLs.
Steps to Reproduce
Input a URL without a scheme into the system (e.g., example.com or www.example.com).
Observe that the URL does not get correctly prefixed with "http://", leading to failures in processing.
Expected Behavior
Domains entered without an HTTP/HTTPS prefix should automatically have "http://" appended to ensure they are processed correctly throughout the system.
Actual Behavior
The domains are left without any scheme, which leads to incorrect processing and potential errors in downstream functionality.
Possible Solution
Adjust the URL normalization function to detect and prepend "http://" to URLs lacking a scheme.
This issue is critical for ensuring all user-entered URLs are handled uniformly and correctly across the platform.
The text was updated successfully, but these errors were encountered:
Description
When domains are entered without an "http://" or "https://" prefix, they are not being processed correctly. This issue affects the URL normalization process, causing failures in subsequent operations that depend on properly formatted URLs.
Steps to Reproduce
example.com
orwww.example.com
).Expected Behavior
Domains entered without an HTTP/HTTPS prefix should automatically have "http://" appended to ensure they are processed correctly throughout the system.
Actual Behavior
The domains are left without any scheme, which leads to incorrect processing and potential errors in downstream functionality.
Possible Solution
Adjust the URL normalization function to detect and prepend "http://" to URLs lacking a scheme.
This issue is critical for ensuring all user-entered URLs are handled uniformly and correctly across the platform.
The text was updated successfully, but these errors were encountered: