fix get user info card

This commit is contained in:
2024-09-05 16:27:35 +08:00
parent 403bbc4040
commit 4393e3d9a7
3 changed files with 2 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ function renderIcon(icon: unknown) {
}
const menuOptions = ref<MenuOption[]>()
async function RequestBiliUserData() {
await fetch(FETCH_API + `https://account.bilibili.com/api/member/getCardByMid?mid=${userInfo.value?.biliId}`).then(
await fetch(FETCH_API + `https://workers.vrp.moe/api/bilibili/user-info/${userInfo.value?.biliId}`).then(
async (respone) => {
const data = await respone.json()
if (data.code == 0) {