Fix regressions

This commit is contained in:
Dean Herbert
2017-10-14 12:27:32 +09:00
parent cd722e4abb
commit ed152c08ac
3 changed files with 4 additions and 3 deletions

View File

@ -27,6 +27,7 @@ namespace osu.Game.Beatmaps
[Column("Author")]
public string AuthorString
{
get { return Author?.Username; }
set { Author = new User { Username = value }; }
}