diff --git a/netlify/edge-functions/metadata.js b/netlify/edge-functions/metadata.js index 29ed788..5d16cfb 100644 --- a/netlify/edge-functions/metadata.js +++ b/netlify/edge-functions/metadata.js @@ -42,6 +42,7 @@ export default async (request, context) => { if (info.iw) content.push(``); if (info.ih) content.push(``); } + if (info.c) { content.push(``); } if (info.v) { if (!info.v.startsWith("http")) info.v = atob(info.v.replace(/=/g,'')); content.push(``); @@ -57,7 +58,7 @@ export default async (request, context) => { content.push(``); } } - content.push(``); + content.push(``); console.log(["Metadata Request", JSON.stringify(info), geo, ua].join('\t'));