add connect linking

This commit is contained in:
Luke Pulverenti
2014-09-14 11:10:51 -04:00
parent 4f3ea6c6c3
commit 5c615fa024
42 changed files with 542 additions and 78 deletions

View File

@@ -81,7 +81,7 @@ namespace MediaBrowser.Dlna.ContentDirectory
{
if (!string.IsNullOrEmpty(profile.UserId))
{
var user = _userManager.GetUserById(new Guid(profile.UserId));
var user = _userManager.GetUserById(profile.UserId);
if (user != null)
{
@@ -93,7 +93,7 @@ namespace MediaBrowser.Dlna.ContentDirectory
if (!string.IsNullOrEmpty(userId))
{
var user = _userManager.GetUserById(new Guid(userId));
var user = _userManager.GetUserById(userId);
if (user != null)
{