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
If a request is sent with invalid utf-8 characters that aren't escaped, the package crashes with error: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa0 in position 317: invalid start byte
This will result in a 500 internal server error when it reality it should be a 400 bad request.
The fix here to be to catch the UnicodeDecodeError.
The text was updated successfully, but these errors were encountered:
If a request is sent with invalid
utf-8
characters that aren't escaped, the package crashes with error:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa0 in position 317: invalid start byte
This will result in a 500 internal server error when it reality it should be a 400 bad request.
The fix here to be to catch the
UnicodeDecodeError
.The text was updated successfully, but these errors were encountered: