mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 09:34:16 +00:00
User HTTP instead of HTTPS when fetching icon in docker internal network
This commit is contained in:
parent
26de38a869
commit
498de660ba
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue