mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add provider name to identification results
This commit is contained in:
parent
d0e2d0c91b
commit
5e8421e625
1 changed files with 3 additions and 1 deletions
|
@ -221,13 +221,15 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
var numLines = 2;
|
var numLines = 3;
|
||||||
if (currentItemType === 'MusicAlbum') {
|
if (currentItemType === 'MusicAlbum') {
|
||||||
numLines++;
|
numLines++;
|
||||||
}
|
}
|
||||||
|
|
||||||
var lines = [result.Name];
|
var lines = [result.Name];
|
||||||
|
|
||||||
|
lines.push(result.SearchProviderName);
|
||||||
|
|
||||||
if (result.AlbumArtist) {
|
if (result.AlbumArtist) {
|
||||||
lines.push(result.AlbumArtist.Name);
|
lines.push(result.AlbumArtist.Name);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue