Skip to content

Commit

Permalink
Merge branch 'preview-fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
the1812 committed Sep 8, 2023
2 parents 57c0200 + 6bf19a1 commit 881ccf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default Vue.extend({
const author = lodash.get(card, 'modules.module_author')
return {
id: card.id_str,
aid: archive.aid,
aid: parseInt(archive.aid),
bvid: archive.bvid,
videoUrl: `https://www.bilibili.com/${archive.bvid}`,
coverUrl: archive.cover,
Expand Down
2 changes: 1 addition & 1 deletion src/components/feeds/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const getVideoFeeds = withContentFilter(
})
return {
id: card.id_str,
aid: archive.aid,
aid: parseInt(archive.aid),
bvid: archive.bvid,
title: archive.title,
upFaceUrl: author.face,
Expand Down

0 comments on commit 881ccf2

Please sign in to comment.