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
On Windows, browsers use a CR+LF line ending. JS doesn't count NL's as 2 bytes, but the server-side error check does. It looks like I have under 512 chars client-side, but the server errors because it counts LF's as chars.
Solution
On submit, server-side (and maybe client-side too) replace LF with null string.
The text was updated successfully, but these errors were encountered:
Reproduction
Proposed Problem
On Windows, browsers use a CR+LF line ending. JS doesn't count NL's as 2 bytes, but the server-side error check does. It looks like I have under 512 chars client-side, but the server errors because it counts LF's as chars.
Solution
On submit, server-side (and maybe client-side too) replace LF with null string.
The text was updated successfully, but these errors were encountered: