mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
fix covers not showing in user panels
This commit is contained in:
@ -39,10 +39,14 @@ namespace osu.Game.Users
|
|||||||
public string AvatarUrl;
|
public string AvatarUrl;
|
||||||
|
|
||||||
[JsonProperty(@"cover_url")]
|
[JsonProperty(@"cover_url")]
|
||||||
public string CoverUrl;
|
public string CoverUrl
|
||||||
|
{
|
||||||
|
get { return Cover?.Url; }
|
||||||
|
set { Cover = new UserCover { Url = value }; }
|
||||||
|
}
|
||||||
|
|
||||||
//[JsonProperty(@"cover")]
|
[JsonProperty(@"cover")]
|
||||||
//public UserCover Cover;
|
public UserCover Cover;
|
||||||
|
|
||||||
public class UserCover
|
public class UserCover
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user