Remove initial filed

This commit is contained in:
Andrei Zavatski
2019-10-15 11:25:58 +03:00
parent 3c714dc013
commit eb5dad08aa
3 changed files with 21 additions and 19 deletions

View File

@ -78,6 +78,6 @@ namespace osu.Game.Online.API.Requests.Responses
return WebUtility.HtmlDecode(Regex.Replace(MessageHtml, @"<(.|\n)*?>", string.Empty));
}
public int GetDeletedChildrenCount => ChildComments.Select(c => c.IsDeleted).Count(c => c);
public int DeletedChildrenCount => ChildComments.Count(c => c.IsDeleted);
}
}