fix a string format

httptests
UbitUmarov 2018-01-12 18:09:38 +00:00
parent fa78a6fd90
commit 792a1c6e3d
1 changed files with 1 additions and 1 deletions

View File

@ -16965,7 +16965,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
default:
if (c < ' ')
{
t = "000" + String.Format("X", c);
t = "000" + String.Format("{0:X}", c);
sb.Append("\\u" + t.Substring(t.Length - 4));
}
else