fixed querySelector that would grab favicon

This commit is contained in:
KevinWh0 2024-05-03 12:15:47 +02:00
parent 47d1477ac4
commit 975b6b3dd0

View file

@ -36,7 +36,7 @@ class FavIconDot {
private async getOrMakeFaviconElement() : Promise<HTMLLinkElement> {
return new Promise((resolve, reject) => {
const favicon = document.querySelector<HTMLLinkElement>('link[rel$=icon]') ?? this._createFaviconElem();
const favicon = (document.querySelector('link[rel=icon]') ?? this._createFaviconElem()) as HTMLLinkElement;
favicon.addEventListener('load', () => {
resolve(favicon);
});