This commit is contained in:
Andrei Zavatski
2019-10-15 01:10:23 +03:00
parent 42a06a54ff
commit ad32d66365
2 changed files with 2 additions and 2 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).Where(c => c).Count();
public int GetDeletedChildrenCount => ChildComments.Select(c => c.IsDeleted).Count(c => c);
}
}