mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-12 13:22:17 +01:00
fixes #194 - Crew before cast in dash
This commit is contained in:
@@ -615,9 +615,9 @@ namespace MediaBrowser.Controller.Dto
|
||||
|
||||
var dictionary = entities.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
for (var i = 0; i < item.People.Count; i++)
|
||||
for (var i = 0; i < people.Count; i++)
|
||||
{
|
||||
var person = item.People[i];
|
||||
var person = people[i];
|
||||
|
||||
var baseItemPerson = new BaseItemPerson
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user