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
I'm not familiar with Git to submit a bug fix the right way, so I'm doing it here in case it helps someone else.
I kept getting error messages saying "unsupported charset UTF8." I dug into the file the error message said it was coming from, and discovered the script was checking for "UTF-8" and the request was coming with the charset listed as UTF8, without the dash.
I fixed it with this change: On line 128 of KoboOmnivoreConverter-main/node_modules/body-parser/lib/types/ change if (charset.slice(0, 4) !== 'utf-') {
to if (charset.slice(0, 3) !== 'utf') {
Now I'm getting articles on my e-reader!
The text was updated successfully, but these errors were encountered:
jeremyharper
changed the title
Bug Report - UTF-8 Enco
Bug Report - UTF-8 Encoding
Jun 1, 2024
I'm not familiar with Git to submit a bug fix the right way, so I'm doing it here in case it helps someone else.
I kept getting error messages saying "unsupported charset UTF8." I dug into the file the error message said it was coming from, and discovered the script was checking for "UTF-8" and the request was coming with the charset listed as UTF8, without the dash.
I fixed it with this change: On line 128 of KoboOmnivoreConverter-main/node_modules/body-parser/lib/types/ change
if (charset.slice(0, 4) !== 'utf-') {
to
if (charset.slice(0, 3) !== 'utf') {
Now I'm getting articles on my e-reader!
The text was updated successfully, but these errors were encountered: