mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
update image url's
This commit is contained in:
parent
ab3c26c564
commit
16bc1f35ff
@ -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
|
||||||
});
|
});
|
||||||
|
@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user