From 6553dd0f1c8faaafaf6e8569a53ecd859eef163f Mon Sep 17 00:00:00 2001 From: Nicholas Jitkoff Date: Thu, 28 Apr 2022 10:40:08 -0600 Subject: [PATCH] quick fix for double slash removal --- netlify/edge-functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify/edge-functions/index.js b/netlify/edge-functions/index.js index a05456a..1ef996b 100644 --- a/netlify/edge-functions/index.js +++ b/netlify/edge-functions/index.js @@ -21,7 +21,7 @@ export default async (request, context) => { } if (image) { if (image.startsWith("http")) { - content += ``; + content += ``; } else { image = decodeURIComponent(image) let codepoints = [];