You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
Pointed out by Aleksey on stackoverflow:
Line 347 in
Util.cs
should beif (codepoint > 0x1F && codepoint < 0x7F) {
instead of
if (codepoint > 0x1F && codepoint < 0x80) {
Line 354 in
Util.cs
should beif (codepoint > 0x1F && codepoint < 0x7F)
instead of
if (codepoint > 0x1F && codepoint < 0x80)
because according to RFC-3501
0x7F should not be passed through unencoded, because it is a control character (
DEL
) and not a printable ASCII-character.The text was updated successfully, but these errors were encountered: