From ab1a9b358a65f6c0310ef61eed0ddf2d3b1438a2 Mon Sep 17 00:00:00 2001 From: Alexis Faizeau Date: Tue, 26 Oct 2021 14:16:00 +0200 Subject: [PATCH] Change favicon snatcher http to https --- front/src/WebRtc/CoWebsiteManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/WebRtc/CoWebsiteManager.ts b/front/src/WebRtc/CoWebsiteManager.ts index ff3ea1b1..444fe421 100644 --- a/front/src/WebRtc/CoWebsiteManager.ts +++ b/front/src/WebRtc/CoWebsiteManager.ts @@ -438,7 +438,7 @@ class CoWebsiteManager { icon.style.display = "none"; const iconImage = document.createElement("img"); - iconImage.src = `http://www.google.com/s2/favicons?sz=64&domain_url=${iframe.src}`; + iconImage.src = `https://www.google.com/s2/favicons?sz=64&domain_url=${iframe.src}`; const url = new URL(iframe.src); iconImage.alt = url.hostname;