1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix chapter name XSS injection in progress bar

This commit is contained in:
Niels van Velzen 2024-05-20 11:27:57 +02:00
parent a806eeb3a7
commit b8a7cf214d
2 changed files with 2 additions and 18 deletions

View file

@ -1843,7 +1843,6 @@ export default function (view) {
if (item?.Chapters?.length) {
item.Chapters.forEach(currentChapter => {
markers.push({
className: 'chapterMarker',
name: currentChapter.Name,
progress: currentChapter.StartPositionTicks / item.RunTimeTicks
});