From ca4676f508d3af4950b68d0c89a22c2e280471b4 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 29 Jan 2020 14:45:47 -0500 Subject: [PATCH] decode uri before building html metadata --- lbrytv/src/html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrytv/src/html.js b/lbrytv/src/html.js index 7efc3f9c2..b514e5f79 100644 --- a/lbrytv/src/html.js +++ b/lbrytv/src/html.js @@ -123,7 +123,7 @@ async function getClaimFromChainquery(url) { } module.exports.getHtml = async function getHtml(ctx) { - const path = ctx.path; + const path = decodeURIComponent(ctx.path); if (path.length === 0) { return insertToHead(html);