diff --git a/routes/appstore/price.js b/routes/appstore/price.js index 69b6d8568..e301451b5 100644 --- a/routes/appstore/price.js +++ b/routes/appstore/price.js @@ -16,7 +16,7 @@ module.exports = async (ctx) => { }); if (!res.data.results) { - const unsupported = "当前 app 未被收录. Price monitor isn't available for this app."; + const unsupported = '当前 app 未被收录. Price monitor is not available for this app.'; ctx.state.data = { title: unsupported, item: [{ title: unsupported }], diff --git a/routes/jike/topicText.js b/routes/jike/topicText.js index f15562f71..fa0f832a2 100644 --- a/routes/jike/topicText.js +++ b/routes/jike/topicText.js @@ -34,7 +34,7 @@ module.exports = async (ctx) => { item: data.map((item) => { const date = new Date(item.createdAt); return { - title: `${title} ${dayjs(date).format('MMM月DD日')}`, + title: `${title} ${dayjs(date).format('MM月DD日')}`, description: item.content.replace(new RegExp('\n', 'g'), '
'), pubDate: date.toUTCString(), link: `https://web.okjike.com/message-detail/${item.id}/officialMessage`,