mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 05:49:52 +08:00
Fix escaped html strings not being unescaped
This commit is contained in:
@@ -6,6 +6,7 @@ using osu.Game.Users;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace osu.Game.Online.API.Requests.Responses
|
||||
@@ -94,7 +95,7 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
if (IsDeleted)
|
||||
return @"deleted";
|
||||
|
||||
return Regex.Replace(MessageHTML, @"\<.*?\>", "");
|
||||
return WebUtility.HtmlDecode(Regex.Replace(MessageHTML, @"<(.|\n)*?>", string.Empty));
|
||||
}
|
||||
|
||||
public int GetDeletedChildsCount()
|
||||
|
||||
Reference in New Issue
Block a user