From 6cbe079a91df758759aba90a21d678d5a76a1b76 Mon Sep 17 00:00:00 2001 From: hensm Date: Thu, 21 Mar 2019 15:15:16 +0000 Subject: [PATCH] Fix recursion --- ext/src/shim/cast/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/src/shim/cast/index.ts b/ext/src/shim/cast/index.ts index 3f533f5..c158607 100755 --- a/ext/src/shim/cast/index.ts +++ b/ext/src/shim/cast/index.ts @@ -182,7 +182,7 @@ export function setReceiverDisplayStatus (sessionId: string): void { } export function unescape (escaped: string): string { - return unescape(escaped); + return decodeURI(escaped); }