diff --git a/lib/v2/dorohedoro/news.js b/lib/v2/dorohedoro/news.js index e285c75e5e..7e9f3ffd55 100644 --- a/lib/v2/dorohedoro/news.js +++ b/lib/v2/dorohedoro/news.js @@ -14,7 +14,9 @@ module.exports = async (ctx) => { url: apiUrl, }); - const $ = cheerio.load(response.data); + const $ = cheerio.load(response.data, { + xmlMode: true, + }); let items = $('item') .slice(0, limit)