1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

album detail page

This commit is contained in:
Luke Pulverenti 2013-04-22 11:10:54 -04:00
parent dd808d8298
commit fe459feef2
3 changed files with 22 additions and 1 deletions

View file

@ -167,6 +167,9 @@
if (item.Type == "BoxSet") {
return "itemdetails.html?id=" + item.Id;
}
if (item.Type == "MusicAlbum") {
return "itemdetails.html?id=" + item.Id;
}
if (item.Type == "Genre") {
return "itembynamedetails.html?genre=" + item.Name;
}