update UserDataManager

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

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

Loading…
Cancel
Save