mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-19 09:52:21 +08:00
fix: xposed module guid
This commit is contained in:
@@ -15,18 +15,20 @@ module.exports = async (ctx) => {
|
||||
const list = $('div.field-collection-view');
|
||||
|
||||
ctx.state.data = {
|
||||
title: `${title}(${ctx.params.mod})`,
|
||||
title: `${title}(${ctx.params.mod}) 更新`,
|
||||
link: link,
|
||||
item:
|
||||
list &&
|
||||
list
|
||||
.map((_, item) => {
|
||||
item = $(item);
|
||||
const version = item.find('div.field-name-field-version-number div.even').text();
|
||||
return {
|
||||
title: item.find('div.field-name-field-version-number div.even').text(),
|
||||
title: `Version ${version}`,
|
||||
description: item.find('div.field-name-field-changes').html(),
|
||||
link: link,
|
||||
pubDate: item.find('span.date-display-single').html().replace('- ', ''),
|
||||
guid: ctx.params.mod + version,
|
||||
};
|
||||
})
|
||||
.get(),
|
||||
|
||||
Reference in New Issue
Block a user