Skip to content

Commit

Permalink
Fix encoded address
Browse files Browse the repository at this point in the history
  • Loading branch information
jstabenow committed Sep 6, 2024
1 parent 3f90be8 commit 352138d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Edit/Summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 352138d

Please sign in to comment.