mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-07 21:47:57 +08:00
Fix a9vg Invalid Date (#1422)
This commit is contained in:
@@ -27,7 +27,7 @@ module.exports = async (ctx) => {
|
||||
return {
|
||||
title: item.find('.img-scale').attr('title'),
|
||||
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'),
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user