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

Show all Cast&Crew, not just Actors

This commit is contained in:
bugfixin 2023-02-17 10:54:34 -08:00 committed by Bill Thornton
parent 0cb6a8c4c8
commit 167f2d2614

View file

@ -1804,9 +1804,7 @@ function renderSpecials(page, item, user) {
}
function renderCast(page, item) {
const people = (item.People || []).filter(function (p) {
return p.Type === 'Actor';
});
const people = item.People || [];
if (!people.length) {
page.querySelector('#castCollapsible').classList.add('hide');