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

[Content] Handle empty url string #3234

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

finnar-bin
Copy link
Contributor

Fixes #3228

@finnar-bin finnar-bin added bug Something isn't working ready PR is complete and ready for deployment labels Feb 20, 2025
@finnar-bin finnar-bin requested a review from agalin920 February 20, 2025 07:29
@finnar-bin finnar-bin self-assigned this Feb 20, 2025
@@ -11,6 +11,8 @@ type Props = {
};

const removeProtocolAndSubdomain = (url: string): string => {
if (!url) return "";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How is this function used? Will it expect an empty string? Should this rather throw an error? i.e. what should the return contract on this function be?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also what value was being feed into this function causing the error? Is that value an acceptable value to be provided?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working ready PR is complete and ready for deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TypeError: Failed to construct 'URL': Invalid URL
2 participants