Skip to content

Commit

Permalink
fix(favicons): bigger size 16 to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyurec committed Oct 12, 2022
1 parent 439bb65 commit 95ec6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/favIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const setFavicons = async (extLinkList?: NodeListOf<HTMLAnchorElement>) =
}
const { hostname, protocol } = new URL(extLinkList[i].href);
if ((protocol === 'http:') || (protocol === 'https:')) {
const faviconValue = `https://www.google.com/s2/favicons?domain=${hostname}&sz=16`;
const faviconValue = `https://www.google.com/s2/favicons?domain=${hostname}&sz=32`;
const fav = doc.createElement('img');
fav.src = faviconValue;
fav.width = 16;
Expand Down

0 comments on commit 95ec6c3

Please sign in to comment.