Remove HTML escape for apostrophe in chat #1537

This commit is contained in:
Chase Cooper 2026-04-24 10:39:49 -04:00
parent 42e75876f2
commit 0352ae879b

View file

@ -6604,7 +6604,6 @@ wstring CMinecraftApp::EscapeHTMLString(const wstring& desc)
{L'<', L"&lt;"}, {L'<', L"&lt;"},
{L'>', L"&gt;"}, {L'>', L"&gt;"},
{L'\"', L"&quot;"}, {L'\"', L"&quot;"},
{L'\'', L"&#39;"},
}; };
wstring finalString = L""; wstring finalString = L"";