mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed broken genre link
This commit is contained in:
parent
2a4233e3de
commit
58e6a91984
1 changed files with 1 additions and 1 deletions
|
@ -1489,7 +1489,7 @@
|
|||
html += ' / ';
|
||||
}
|
||||
|
||||
var param = item.Type == "Audio" || item.Type == "Artist" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre;";
|
||||
var param = item.Type == "Audio" || item.Type == "Artist" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre";
|
||||
|
||||
html += '<a class="textlink" href="itembynamedetails.html?context=' + context + '&' + param + '=' + ApiClient.encodeName(item.Genres[i]) + '">' + item.Genres[i] + '</a>';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue