mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Remove useless escape characters
This commit is contained in:
parent
3b3884b1a1
commit
be9f964c18
7 changed files with 16 additions and 18 deletions
|
@ -119,7 +119,7 @@ import Dashboard from '../scripts/clientUtils';
|
|||
function parseHtml(html, hasScript) {
|
||||
if (hasScript) {
|
||||
html = replaceAll(html, '\x3c!--<script', '<script');
|
||||
html = replaceAll(html, '<\/script>--\x3e', '<\/script>');
|
||||
html = replaceAll(html, '</script>--\x3e', '</script>');
|
||||
}
|
||||
|
||||
const wrapper = document.createElement('div');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue