update UserDataManager

pull/702/head
Luke Pulverenti 8 years ago
parent accdbfaab2
commit 8000a30d9a

@ -170,22 +170,18 @@ namespace MediaBrowser.Server.Implementations.Library
return value;
}
}
}
if (keys.Count > 0)
if (keys.Count > 0)
{
return new UserItemData
{
var key = keys[0];
var cacheKey = GetCacheKey(userId, key);
var userdata = new UserItemData
{
UserId = userId,
Key = key
};
_userData[cacheKey] = userdata;
return userdata;
}
return null;
UserId = userId,
Key = keys[0]
};
}
return null;
}
/// <summary>

Loading…
Cancel
Save