diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js
index 5379aef2e..425707b1c 100644
--- a/dashboard-ui/scripts/Itemdetailpage.js
+++ b/dashboard-ui/scripts/Itemdetailpage.js
@@ -226,7 +226,7 @@
$('#players', page).hide();
}
- if (item.Type == "Audio" && item.Artists && item.Artists.length) {
+ if ((item.Type == "Audio" || item.Type == "MusicVideo") && item.Artists && item.Artists.length) {
$('#artist', page).show().html('Artist: ' + item.Artists[0] + '').trigger('create');
} else {
$('#artist', page).hide();
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js
index 5b3eb37ae..fa60db61c 100644
--- a/dashboard-ui/scripts/librarybrowser.js
+++ b/dashboard-ui/scripts/librarybrowser.js
@@ -747,6 +747,9 @@
else if (item.AlbumArtist && item.Type == "MusicAlbum") {
html.push('' + item.AlbumArtist + '');
}
+ else if (item.Artists && item.Artists.length && item.Type == "MusicVideo") {
+ html.push('' + item.Artists[0] + '');
+ }
else if (item.SeriesName && item.Type == "Episode") {
html.push('' + item.SeriesName + '');
@@ -760,8 +763,12 @@
html.push('Season ' + item.ParentIndexNumber + '');
}
- else if (item.Album && item.Type == "Audio" && item.ParentId) {
- html.push('' + item.Album + '');
+ else if (item.Album && item.Type == "Audio" && (item.AlbumId || item.ParentId)) {
+ html.push('' + item.Album + '');
+
+ }
+ else if (item.Album && item.Type == "MusicVideo" && item.AlbumId) {
+ html.push('' + item.Album + '');
}
else if (item.AlbumArtist && item.Type == "MusicAlbum") {