aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sorting
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-02 16:46:22 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-02 16:46:22 -0500
commit245e92c9cc6f97e139e04548c94184c65712d3f0 (patch)
treecd957fa794a8e69871d25ea00748c1445ef58d76 /MediaBrowser.Server.Implementations/Sorting
parentcd279d98e0574c396c0a35984e46658151e54fc0 (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sorting')
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/AlbumCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/EpisodeCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/MovieCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/MusicVideoCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/SongCountComparer.cs2
-rw-r--r--MediaBrowser.Server.Implementations/Sorting/TrailerCountComparer.cs2
7 files changed, 7 insertions, 7 deletions
diff --git a/MediaBrowser.Server.Implementations/Sorting/AlbumCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/AlbumCountComparer.cs
index 8e24bc52d6..e35ba00f2e 100644
--- a/MediaBrowser.Server.Implementations/Sorting/AlbumCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/AlbumCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/EpisodeCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/EpisodeCountComparer.cs
index 7731e59d2b..b3fd8a023d 100644
--- a/MediaBrowser.Server.Implementations/Sorting/EpisodeCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/EpisodeCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/MovieCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/MovieCountComparer.cs
index 51f39a02f2..605f4d1af4 100644
--- a/MediaBrowser.Server.Implementations/Sorting/MovieCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/MovieCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/MusicVideoCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/MusicVideoCountComparer.cs
index 889658459c..6c9c5534d6 100644
--- a/MediaBrowser.Server.Implementations/Sorting/MusicVideoCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/MusicVideoCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs
index 13d2932cbc..8567e400cd 100644
--- a/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/SongCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/SongCountComparer.cs
index b12e1322a0..85b849a217 100644
--- a/MediaBrowser.Server.Implementations/Sorting/SongCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/SongCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{
diff --git a/MediaBrowser.Server.Implementations/Sorting/TrailerCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/TrailerCountComparer.cs
index b6f67410a0..a13875674d 100644
--- a/MediaBrowser.Server.Implementations/Sorting/TrailerCountComparer.cs
+++ b/MediaBrowser.Server.Implementations/Sorting/TrailerCountComparer.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
if (itemByName != null)
{
- var counts = itemByName.GetItemByNameCounts(User);
+ var counts = itemByName.GetItemByNameCounts(User.Id);
if (counts != null)
{