Display music video title correctly if it belongs to an album (#6819)

* fix: Display music video title correctly if it belongs to an album

* Update CONTRIBUTORS.md

* Update CONTRIBUTORS.md in the correct location
This commit is contained in:
Hazem Krimi
2026-05-12 15:06:30 -04:00
committed by GitHub
parent 785dac6687
commit 23d4a2a711
2 changed files with 2 additions and 5 deletions
+1
View File
@@ -98,6 +98,7 @@
- [Jxiced](https://github.com/Jxiced)
- [Derek Huber](https://github.com/Derek4aty1)
- [StableCrimson](https://github.com/StableCrimson)
- [hazemKrimi](https://github.com/hazemKrimi)
- [diegoeche](https://github.com/diegoeche)
- [Free O'Toole](https://github.com/freeotoole)
- [TheBosZ](https://github.com/thebosz)
+1 -5
View File
@@ -264,11 +264,7 @@ export default function (view) {
LibraryMenu.setTitle(title);
Events.trigger(document, EventType.VIDEO_TITLE_CHANGE, [ title ]);
const documentTitle = parentName || (item ? item.Name : null);
if (documentTitle) {
document.title = documentTitle;
}
document.title = title;
}
let mouseIsDown = false;