mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix HTML escaping
This commit is contained in:
parent
8334a7de33
commit
39879baefe
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ import ServerConnections from '../ServerConnections';
|
|||
|
||||
elem.classList.add('listItemBodyText');
|
||||
|
||||
elem.innerHTML = '<bdi>' + text + '</bdi>';
|
||||
elem.innerHTML = '<bdi>' + escapeHtml(text) + '</bdi>';
|
||||
|
||||
html += elem.outerHTML;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue