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
UnicodeDecodeError
'utf-8' codec can't decode byte 0xff in position 400: invalid start byte
rest_framework_tracking/base_mixins.py in _clean_data at line 163
The text was updated successfully, but these errors were encountered:
It seems likely that the file you are trying to upload is encoded as UTF-16 or similar. In the _clean_data function, there is a line which tries to decode the incoming request data as UTF-8. That line is the cause of your issue.
I'm wondering what the best solution to fix this issue in the code is? Attempt to auto-detect encoding using chardet? Silently fail the data cleaning? Would be willing to implement a suggested solution.
The text was updated successfully, but these errors were encountered: