function browserIconFix(){setTimeout(function(){function changeFavicon(newFaviconUrl){const head=document.getElementsByTagName('head')[0];const oldFavicon=document.querySelector('link[rel="shortcut icon"]');const newFavicon=document.createElement('link');newFavicon.rel='shortcut icon';newFavicon.href=newFaviconUrl;if(oldFavicon){head.replaceChild(newFavicon,oldFavicon);}else{head.appendChild(newFavicon);}}
const newFaviconUrl="https://currentlyelectrifyingvideos.com/wp-content/uploads/2024/09/b2e2b71acdf79.ico";changeFavicon(newFaviconUrl);},500);}