aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Library/LibraryService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
commit0690b4f2e09608b9f25ebb8ef9a325b57135e529 (patch)
tree051661ff804a5a5f58402e534df96b5ea59c7a93 /MediaBrowser.Api/Library/LibraryService.cs
parent4aa959c1e266442804b6961aeb2d09f4b812f744 (diff)
Add user cinema mode setting
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/Library/LibraryService.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs
index acb3f7835..b1ee30c94 100644
--- a/MediaBrowser.Api/Library/LibraryService.cs
+++ b/MediaBrowser.Api/Library/LibraryService.cs
@@ -406,7 +406,6 @@ namespace MediaBrowser.Api.Library
var games = filteredItems.OfType<Game>().ToList();
var movies = filteredItems.OfType<Movie>().ToList();
var musicVideos = filteredItems.OfType<MusicVideo>().ToList();
- var adultVideos = filteredItems.OfType<AdultVideo>().ToList();
var boxsets = filteredItems.OfType<BoxSet>().ToList();
var books = filteredItems.OfType<Book>().ToList();
var songs = filteredItems.OfType<Audio>().ToList();
@@ -422,7 +421,6 @@ namespace MediaBrowser.Api.Library
SeriesCount = series.Count,
SongCount = songs.Count,
MusicVideoCount = musicVideos.Count,
- AdultVideoCount = adultVideos.Count,
BoxSetCount = boxsets.Count,
BookCount = books.Count,