mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
log request headers
This commit is contained in:
parent
8b032714a9
commit
35cef416a9
3 changed files with 13 additions and 77 deletions
|
@ -768,7 +768,12 @@
|
|||
textlines.push(item.AlbumArtist || 'Unknown Artist');
|
||||
}
|
||||
|
||||
textlines.push(LibraryBrowser.getPosterViewDisplayName(item));
|
||||
var displayName = LibraryBrowser.getPosterViewDisplayName(item);
|
||||
|
||||
if (options.showIndexNumber && item.IndexNumber != null) {
|
||||
displayName = item.IndexNumber + ". " + displayName;
|
||||
}
|
||||
textlines.push(displayName);
|
||||
|
||||
if (item.Type == 'Audio') {
|
||||
textlines.push(item.Artists.join(', ') || 'Unknown Artist');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue