Merge branch 'master' of https://github.com/crunk1/CookieMonster into crunk1-master

This commit is contained in:
Aktanusa
2019-03-13 18:03:52 -04:00

View File

@@ -1371,7 +1371,7 @@ CM.Disp.CreateFavicon = function() {
CM.Disp.Favicon = document.createElement('link'); CM.Disp.Favicon = document.createElement('link');
CM.Disp.Favicon.id = 'CMFavicon'; CM.Disp.Favicon.id = 'CMFavicon';
CM.Disp.Favicon.rel = 'shortcut icon'; CM.Disp.Favicon.rel = 'shortcut icon';
CM.Disp.Favicon.href = 'http://orteil.dashnet.org/cookieclicker/favicon.ico'; CM.Disp.Favicon.href = 'https://orteil.dashnet.org/cookieclicker/favicon.ico';
document.getElementsByTagName('head')[0].appendChild(CM.Disp.Favicon); document.getElementsByTagName('head')[0].appendChild(CM.Disp.Favicon);
} }
@@ -1385,7 +1385,7 @@ CM.Disp.UpdateFavicon = function() {
} }
} }
else { else {
CM.Disp.Favicon.href = 'http://orteil.dashnet.org/cookieclicker/favicon.ico'; CM.Disp.Favicon.href = 'https://orteil.dashnet.org/cookieclicker/favicon.ico';
} }
} }