From 352138dfefa2534385923fe80a4c38c3f9ca8fb8 Mon Sep 17 00:00:00 2001 From: Jan Stabenow Date: Fri, 6 Sep 2024 10:28:10 +0200 Subject: [PATCH] Fix encoded address --- src/views/Edit/Summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Edit/Summary.js b/src/views/Edit/Summary.js index 281f780..4361f68 100644 --- a/src/views/Edit/Summary.js +++ b/src/views/Edit/Summary.js @@ -37,7 +37,7 @@ export default function Summary(props) { const s = Sources.Get(source.type); if (s !== null) { name = s.name; - address = stream.url.replace(/^playout:/, ''); + address = decodeURIComponent(stream.url.replace(/^playout:/, '')); showEncoding = true; }