diff --git a/src/components/cardbuilder/cardBuilder.js b/src/components/cardbuilder/cardBuilder.js
index 7b3de71e92..f21f177140 100644
--- a/src/components/cardbuilder/cardBuilder.js
+++ b/src/components/cardbuilder/cardBuilder.js
@@ -1572,7 +1572,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
return '';
}
if (collectionType === 'homevideos' || collectionType === 'photos') {
- return '';
+ return '';
}
if (collectionType === 'music') {
return '';
diff --git a/src/components/homesections/homesections.js b/src/components/homesections/homesections.js
index 00c938b216..c4f5d064b3 100644
--- a/src/components/homesections/homesections.js
+++ b/src/components/homesections/homesections.js
@@ -216,7 +216,7 @@ define(['connectionManager', 'cardBuilder', 'appSettings', 'dom', 'apphost', 'la
icon = "local_movies";
break;
case "homevideos":
- icon = "video_label";
+ icon = "photo_library";
break;
case "musicvideos":
icon = "music_video";
diff --git a/src/controllers/medialibrarypage.js b/src/controllers/medialibrarypage.js
index e97d0af4d5..458d415734 100644
--- a/src/controllers/medialibrarypage.js
+++ b/src/controllers/medialibrarypage.js
@@ -232,7 +232,7 @@ define(["jQuery", "apphost", "scripts/taskbutton", "loading", "libraryMenu", "gl
case "trailers":
return "local_movies";
case "homevideos":
- return "video_library";
+ return "photo_library";
case "musicvideos":
return "video_library";
case "books":
diff --git a/src/scripts/librarymenu.js b/src/scripts/librarymenu.js
index 1f9d1deed6..cc9ef030f1 100644
--- a/src/scripts/librarymenu.js
+++ b/src/scripts/librarymenu.js
@@ -534,10 +534,6 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
else if ("livetv" === i.CollectionType) {
itemId = "livetv";
}
-
- else if ("photos" === i.CollectionType) {
- icon = "photo_library";
- }
else if ("music" === i.CollectionType) {
icon = "library_music";
}
@@ -553,8 +549,8 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
else if ("movies" === i.CollectionType) {
icon = "video_library";
}
- else if ("homevideos" === i.CollectionType) {
- icon = "video_label";
+ else if ("homevideos" === i.CollectionType || "photos" === i.CollectionType) {
+ icon = "photo_library";
}
else if ("channels" === i.CollectionType || "Channel" === i.Type) {
icon = "videocam";