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:
parent
0cb6a8c4c8
commit
167f2d2614
1 changed files with 1 additions and 3 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue