From 712c7d475c0a4a7a3b99bccfc1ddbce791dd7f78 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 1 May 2023 01:10:25 -0700 Subject: [PATCH] fix: duplicate guid for each item (#12416) * fix: duplicate guid for each item * fix: typo --- lib/v2/sony/downloads.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/v2/sony/downloads.js b/lib/v2/sony/downloads.js index b79c96d13..9f470fcce 100644 --- a/lib/v2/sony/downloads.js +++ b/lib/v2/sony/downloads.js @@ -40,6 +40,7 @@ module.exports = async (ctx) => { description: `Sony - ${productId.toUpperCase()}`, item: list.map((item) => ({ title: item.title, + guid: item.title + ' - ' + item.url, link: item.url, pubDate: item.pubDate, })),