diff --git a/lib/routes/nytimes/morning_post.js b/lib/routes/nytimes/morning_post.js index 065e32dda..f1862957b 100644 --- a/lib/routes/nytimes/morning_post.js +++ b/lib/routes/nytimes/morning_post.js @@ -28,7 +28,7 @@ module.exports = async (ctx) => { const description = await ctx.cache.tryGet(`nyt: ${link}`, async () => { const response = await axios.get(link); - return utils.ProcessFeed(response.data); + return utils.ProcessFeed(response.data).description; }); item.description = description;