1
0
Fork 0
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:
Luke Pulverenti 2014-03-13 23:23:58 -04:00
parent eaf0e65608
commit c3e4b0bdd5
2 changed files with 9 additions and 1 deletions

View file

@ -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);