We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encoding::UndefinedConversionError
Describe the bug Fetching contact's picture raises Encoding::UndefinedConversionError ("\xFF" from ASCII-8BIT to UTF-8)
Encoding::UndefinedConversionError ("\xFF" from ASCII-8BIT to UTF-8)
Similar issue was fixed some time ago here: #193
The solution is to pass encoding argument when creating a Tempfile:
Tempfile.new(encoding: 'ascii-8bit')
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue @mc-bro, we will fix this and include it in a future release!
Sorry, something went wrong.
Merge branch 'main' into TW-2384-gh-422-ruby-fetching-contacts-pictur…
d2426c8
…e-raises
Fix contact picture encoding error (#441)
125adcc
This PR ensured that when we are dealing with contact picture, that we are using the correct encoding. Closes #422.
Successfully merging a pull request may close this issue.
Describe the bug
Fetching contact's picture raises
Encoding::UndefinedConversionError ("\xFF" from ASCII-8BIT to UTF-8)
Similar issue was fixed some time ago here: #193
The solution is to pass encoding argument when creating a Tempfile:
The text was updated successfully, but these errors were encountered: