User HTTP instead of HTTPS when fetching icon in docker internal network

This commit is contained in:
abias 2023-05-22 18:10:16 -04:00
parent 26de38a869
commit 498de660ba

View file

@ -356,7 +356,9 @@ export async function generateManifestBase64(site: Site) {
async function fetchIconPng(iconUrl: string) {
return await fetch(
iconUrl.replace(/https?:\/\/localhost:\d+/g, getHttpBaseInternal())
iconUrl
.replace(/https?:\/\/localhost:\d+/g, getHttpBaseInternal())
.replace(/https/, "http")
)
.then(res => res.blob())
.then(blob => blob.arrayBuffer());