Skip to content

Commit

Permalink
fix: getFavicon
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Jul 7, 2024
1 parent 014efb0 commit 5112c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/helpers/getFavicon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const getFavicon = (url: string) => {
const { hostname } = new URL(url);

return urlcat('https://external-content.duckduckgo.com/ip3/:domain.ico', {
domain: hostname
domain: hostname || 'example.com'
});
};

Expand Down

1 comment on commit 5112c11

@vercel
Copy link

@vercel vercel bot commented on 5112c11 Jul 7, 2024

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

web – ./apps/web

heyxyz.vercel.app
web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
hey.xyz

Please sign in to comment.