mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Solving a bug with people in the database
This commit is contained in:
parent
a3cefb9088
commit
d8a21f1cf1
@ -141,7 +141,7 @@ namespace Kyoo.Controllers
|
|||||||
if (show != null)
|
if (show != null)
|
||||||
return show;
|
return show;
|
||||||
show = await _metadataProvider.GetShowFromName(showTitle, showPath, library);
|
show = await _metadataProvider.GetShowFromName(showTitle, showPath, library);
|
||||||
show.People = from people in await _metadataProvider.GetPeople(show, library) select people.ToLink(show);
|
show.People = (from people in await _metadataProvider.GetPeople(show, library) select people.ToLink(show)).ToList();
|
||||||
return show;
|
return show;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user