updated nuget

This commit is contained in:
Luke Pulverenti
2015-02-07 08:43:44 -05:00
parent cf0875ef6c
commit 49c0878a4b
12 changed files with 61 additions and 56 deletions

View File

@@ -223,8 +223,9 @@ namespace MediaBrowser.Server.Implementations.Sync
{
var items = category.HasValue ?
await GetItemsForSync(category.Value, parentId, user).ConfigureAwait(false) :
itemIds.SelectMany(i => GetItemsForSync(i, user))
.Where(_syncManager.SupportsSync);
itemIds.SelectMany(i => GetItemsForSync(i, user));
items = items.Where(_syncManager.SupportsSync);
if (unwatchedOnly)
{