mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 22:19:40 +08:00
Fix a9vg Invalid Date (#1422)
This commit is contained in:
@@ -27,7 +27,7 @@ module.exports = async (ctx) => {
|
|||||||
return {
|
return {
|
||||||
title: item.find('.img-scale').attr('title'),
|
title: item.find('.img-scale').attr('title'),
|
||||||
description: item.find('p').text() + '<img src="' + item.find('img').attr('src') + '">',
|
description: item.find('p').text() + '<img src="' + item.find('img').attr('src') + '">',
|
||||||
pubDate: new Date(item.find('.time').data('shared-at')).toUTCString(),
|
pubDate: new Date(item.find('.time').text()).toUTCString(),
|
||||||
link: item.find('.img-scale').attr('href'),
|
link: item.find('.img-scale').attr('href'),
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user