1
0
Fork 0
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:
Dmitry Lyzo 2022-10-16 00:06:54 +03:00
parent 8334a7de33
commit 39879baefe
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}