mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
Cleaner type checking
This commit is contained in:
parent
41e127d1d2
commit
08be7f094a
@ -92,12 +92,12 @@ namespace Jellyfin.Api.Controllers
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var itemList = ((Folder?)item)?.GetItemList(query);
|
if (!(item is Folder folder))
|
||||||
if (itemList == null)
|
|
||||||
{
|
{
|
||||||
return new QueryFiltersLegacy();
|
return new QueryFiltersLegacy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var itemList = folder.GetItemList(query);
|
||||||
return new QueryFiltersLegacy
|
return new QueryFiltersLegacy
|
||||||
{
|
{
|
||||||
Years = itemList.Select(i => i.ProductionYear ?? -1)
|
Years = itemList.Select(i => i.ProductionYear ?? -1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user