mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
implement music identification
This commit is contained in:
parent
eaf0e65608
commit
c3e4b0bdd5
2 changed files with 9 additions and 1 deletions
|
@ -928,7 +928,7 @@
|
|||
|
||||
$('.identifyProviderIds', page).html(html).trigger('create');
|
||||
|
||||
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type;
|
||||
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type == "MusicArtist" ? "Artist" : item.Type == "MusicAlbum" ? "Album" : item.Type;
|
||||
|
||||
$('.identificationHeader', page).html('Identify ' + friendlyName);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue