mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
support artists tag value
This commit is contained in:
parent
19374a0bb2
commit
a5288c2eaf
3 changed files with 12 additions and 7 deletions
|
@ -601,7 +601,7 @@
|
|||
if (item.Type == 'Episode') return '';
|
||||
|
||||
// SortName
|
||||
name = (item.SortName || item.Name)[0].toUpperCase();
|
||||
name = (item.SortName || item.Name || '?')[0].toUpperCase();
|
||||
|
||||
code = name.charCodeAt(0);
|
||||
if (code < 65 || code > 90) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue