fix: revert sort
This commit is contained in:
parent
a27cc791e8
commit
f32c552d70
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module.exports = async function () {
|
|||
const feed = await res
|
||||
const articles = feed.feed
|
||||
return articles.reverse().map((article) => {
|
||||
const tags = article['content']['tags'].reverse().map((tag) => tag['name'])
|
||||
const tags = article['content']['tags'].map((tag) => tag['name'])
|
||||
return {
|
||||
url: article['content']['url'],
|
||||
title: article['content']['title'],
|
||||
|
|
Reference in a new issue