diff --git a/registry/lib/components/style/custom-navbar/feeds/tabs/VideoFeeds.vue b/registry/lib/components/style/custom-navbar/feeds/tabs/VideoFeeds.vue index 8d392ca42..27a6627fc 100644 --- a/registry/lib/components/style/custom-navbar/feeds/tabs/VideoFeeds.vue +++ b/registry/lib/components/style/custom-navbar/feeds/tabs/VideoFeeds.vue @@ -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, diff --git a/src/components/feeds/api/index.ts b/src/components/feeds/api/index.ts index 27e4078ff..f3c30522f 100644 --- a/src/components/feeds/api/index.ts +++ b/src/components/feeds/api/index.ts @@ -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,