mirror of
https://github.com/osukey/osukey.git
synced 2025-07-04 01:40:02 +09:00
Update existing usages of Author
as string
to access Username
directly
This commit is contained in:
@ -262,7 +262,8 @@ namespace osu.Game.Beatmaps
|
||||
Artist = model.Metadata?.Artist ?? string.Empty,
|
||||
TitleUnicode = model.Metadata?.TitleUnicode ?? string.Empty,
|
||||
ArtistUnicode = model.Metadata?.ArtistUnicode ?? string.Empty,
|
||||
Author = new APIUser { Username = model.Metadata?.Author },
|
||||
AuthorString = model.Metadata?.Author.Username ?? string.Empty,
|
||||
AuthorID = model.Metadata?.Author.OnlineID ?? 1,
|
||||
}
|
||||
}, minimiseDownloadSize);
|
||||
}
|
||||
|
Reference in New Issue
Block a user