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
+1 -3
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');