From 01e631b78446abc84730e0f1bc511c6b20c4136c Mon Sep 17 00:00:00 2001 From: sjdhome Date: Mon, 3 Aug 2020 04:27:48 +0800 Subject: [PATCH] fix: wrong Chocolatey title field (#5334) --- lib/routes/chocolatey/software.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/chocolatey/software.js b/lib/routes/chocolatey/software.js index c8fa4a405..5a3dfdf48 100644 --- a/lib/routes/chocolatey/software.js +++ b/lib/routes/chocolatey/software.js @@ -43,7 +43,7 @@ module.exports = async (ctx) => { const items = pick_versions(raw); const rsshub_object = { - name: software_name, + title: software_name, link: software_link, item: items.map((i) => { const link = `https://chocolatey.org/packages/${software_name}/${i.version}`;