diff --git a/lib/v2/ft/myft.js b/lib/v2/ft/myft.js index c5d7d0b90ce185..f7bd3aa92522bb 100644 --- a/lib/v2/ft/myft.js +++ b/lib/v2/ft/myft.js @@ -27,7 +27,8 @@ module.exports = async (ctx) => { const $ = cheerio.load(response.data); - item.description = ProcessFeed($('div.article__content-body')); + item.description = ProcessFeed($('article.js-article__content-body')); + item.category = JSON.parse($('script[type="application/ld+json"]').eq(1).text()).itemListElement.map((e) => e.name); item.author = $('a.n-content-tag--author').text(); return item;