mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added studio and people placeholder pages
This commit is contained in:
parent
6f3b88353e
commit
b90eabc00a
17 changed files with 98 additions and 19 deletions
|
@ -150,6 +150,15 @@
|
|||
if (item.Type == "BoxSet") {
|
||||
return "boxset.html?id=" + item.Id;
|
||||
}
|
||||
if (item.Type == "Genre") {
|
||||
return "itembynamedetails.html?genre=" + item.Name;
|
||||
}
|
||||
if (item.Type == "Studio") {
|
||||
return "itembynamedetails.html?studio=" + item.Name;
|
||||
}
|
||||
if (item.Type == "Person") {
|
||||
return "itembynamedetails.html?person=" + item.Name;
|
||||
}
|
||||
|
||||
return item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue