From 2d6bf74bdcc5b6880aaa6ce7ca5e260e636ee098 Mon Sep 17 00:00:00 2001 From: Hakadao Date: Tue, 7 Jan 2025 14:24:14 +0800 Subject: [PATCH] fix(more-pop): update history URL to the correct path --- src/components/TopBar/components/MorePop.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TopBar/components/MorePop.vue b/src/components/TopBar/components/MorePop.vue index b76e23da..793e6241 100644 --- a/src/components/TopBar/components/MorePop.vue +++ b/src/components/TopBar/components/MorePop.vue @@ -9,7 +9,7 @@ const list = computed((): { name: string, url: string, icon: string }[] => [ { name: t('topbar.notifications'), url: '//message.bilibili.com', icon: 'i-mingcute:notification-line' }, { name: t('topbar.moments'), url: '//t.bilibili.com/', icon: 'i-tabler:windmill' }, { name: t('topbar.favorites'), url: `//space.bilibili.com/${getUserID() ?? ''}/favlist`, icon: 'i-mingcute:star-line' }, - { name: t('topbar.history'), url: '//www.bilibili.com/account/history', icon: 'i-mingcute:time-line' }, + { name: t('topbar.history'), url: '//www.bilibili.com/history', icon: 'i-mingcute:time-line' }, { name: t('topbar.watch_later'), url: '//www.bilibili.com/watchlater/#/list', icon: 'i-mingcute:carplay-line' }, { name: t('topbar.creative_center'), url: '//member.bilibili.com/platform/home', icon: 'i-mingcute:bulb-line' }, ])