mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07: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 (itemList == null)
|
||||
if (!(item is Folder folder))
|
||||
{
|
||||
return new QueryFiltersLegacy();
|
||||
}
|
||||
|
||||
var itemList = folder.GetItemList(query);
|
||||
return new QueryFiltersLegacy
|
||||
{
|
||||
Years = itemList.Select(i => i.ProductionYear ?? -1)
|
||||
|
Loading…
Reference in New Issue
Block a user