fix: 知乎专栏 pubDate 1970 (#6531)

This commit is contained in:
notofoe 2020-12-26 13:47:38 +08:00 committed by GitHub
parent 2b069f532e
commit a28aebb0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ module.exports = async (ctx) => {
title = item.question.title;
author = item.question.author.name;
link = `https://www.zhihu.com/question/${item.question.id}/answer/${item.id}`;
pubDate = new Date(item.question.created);
pubDate = new Date(item.created_time * 1000);
} else if (item.type === 'article') {
title = item.title;
link = item.url;
author = item.author.name;
pubDate = new Date(item.created);
pubDate = new Date(item.created * 1000);
}
return {
title,