From 2576044971653c22efe9179e1da9a3a2bb3f7c68 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 13 Aug 2018 15:19:47 +0800 Subject: [PATCH] Fix guid issue (#459) --- routes/bugly/changelog.js | 1 + routes/qcloud/mlvb/changelog.js | 1 + 2 files changed, 2 insertions(+) diff --git a/routes/bugly/changelog.js b/routes/bugly/changelog.js index 866f9b298..189299220 100644 --- a/routes/bugly/changelog.js +++ b/routes/bugly/changelog.js @@ -38,6 +38,7 @@ module.exports = async (ctx) => { itemDesc += '\n'; }); item.description = itemDesc; + item.guid = changelog.version + changelog.createTime; return item; }); diff --git a/routes/qcloud/mlvb/changelog.js b/routes/qcloud/mlvb/changelog.js index 57f3ac657..b4d163635 100644 --- a/routes/qcloud/mlvb/changelog.js +++ b/routes/qcloud/mlvb/changelog.js @@ -23,6 +23,7 @@ module.exports = async (ctx) => { .nextUntil('h3') .text(); item.link = url; + item.guid = $(this).text(); resultItem.push(item); });