served with unsupported charset/encoding: ISO-8850...
# crawlee-js
i
Reclaiming failed request back to the list or queue. Resource http://www.etmoc.com/look/Looklist?Id=47463 served with unsupported charset/encoding: ISO-88509-1
h
Someone will reply to you shortly. In the meantime, this might help: -# This post was marked as solved by iDora. [View answer]().
a
try setting
forceResponseEncoding
to
utf-8
like below: ([docs](https://crawlee.dev/js/api/http-crawler/interface/HttpCrawlerOptions#forceResponseEncoding))
Copy code
const crawler = new CheerioCrawler({
    requestHandler: async ({ $, request }) => {
       ......
    },
    forceResponseEncoding: 'utf-8', // Forces UTF-8 encoding for all responses
});
try that otherwise try to set it to
latin1
instead
i
Thank you, this solved my problem
a
Cool. marking this as solved