aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/FolderImages
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-15 21:48:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-15 21:48:25 -0400
commit4506d3faa1670f3a1fdad07b0aa29a104147fc8e (patch)
treebeab4e6d7e3079596e48f04224c19c593e794a99 /MediaBrowser.Providers/FolderImages
parent773fd729082876457a566ec6d83cfff694abcd28 (diff)
update dynamic images
Diffstat (limited to 'MediaBrowser.Providers/FolderImages')
-rw-r--r--MediaBrowser.Providers/FolderImages/DefaultImageProvider.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/MediaBrowser.Providers/FolderImages/DefaultImageProvider.cs b/MediaBrowser.Providers/FolderImages/DefaultImageProvider.cs
index 73a1de8898..3550ee6885 100644
--- a/MediaBrowser.Providers/FolderImages/DefaultImageProvider.cs
+++ b/MediaBrowser.Providers/FolderImages/DefaultImageProvider.cs
@@ -77,35 +77,35 @@ namespace MediaBrowser.Providers.FolderImages
if (string.Equals(viewType, CollectionType.Books, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "books.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.Games, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "games.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.Music, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "music.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "photos.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "tv.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.Channels, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "channels.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.LiveTv, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "livetv.png";
+ return null;
}
if (string.Equals(viewType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase))
{
- return urlPrefix + "movies.png";
+ return null;
}
if (isSubView)