mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-09-03 03:50:02 +03:00
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:
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user