Skip to content

Commit

Permalink
fix(route): famitsu (#17153)
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyRL authored Oct 16, 2024
1 parent 36b84b2 commit 37d2a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/famitsu/category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async function handler(ctx) {
},
});

const list = (data.pageProps.categoryArticleData as CategoryArticle[])
const list = (data.pageProps.categoryArticleDataForPc as CategoryArticle[])
.filter((item) => !item.advertiserName)
.map((item) => {
const publicationDate = item.publishedAt?.slice(0, 7).replace('-', '');
Expand Down

0 comments on commit 37d2a80

Please sign in to comment.