update image url's

This commit is contained in:
Luke Pulverenti 2014-10-13 16:23:31 -04:00
parent ab3c26c564
commit 16bc1f35ff
2 changed files with 4 additions and 2 deletions

View File

@ -623,6 +623,8 @@ namespace MediaBrowser.Server.Implementations.Connect
if (user == null) if (user == null)
{ {
// Add user // Add user
//user.Configuration.SyncConnectImage = user.ConnectLinkType == UserLinkType.Guest;
//user.Configuration.SyncConnectName = user.ConnectLinkType == UserLinkType.Guest;
} }
} }
else if (string.Equals(connectEntry.AcceptStatus, "waiting", StringComparison.OrdinalIgnoreCase)) else if (string.Equals(connectEntry.AcceptStatus, "waiting", StringComparison.OrdinalIgnoreCase))
@ -630,7 +632,7 @@ namespace MediaBrowser.Server.Implementations.Connect
pending.Add(new ConnectAuthorization pending.Add(new ConnectAuthorization
{ {
ConnectUserId = connectEntry.UserId, ConnectUserId = connectEntry.UserId,
ImageUrl = connectEntry.ImageUrl, ImageUrl = connectEntry.UserImageUrl,
UserName = connectEntry.UserName, UserName = connectEntry.UserName,
Id = connectEntry.Id Id = connectEntry.Id
}); });

View File

@ -36,7 +36,7 @@ namespace MediaBrowser.Server.Implementations.Connect
public bool IsActive { get; set; } public bool IsActive { get; set; }
public string AcceptStatus { get; set; } public string AcceptStatus { get; set; }
public string UserType { get; set; } public string UserType { get; set; }
public string ImageUrl { get; set; } public string UserImageUrl { get; set; }
public string UserName { get; set; } public string UserName { get; set; }
} }
} }