fix: Guest account can't access account page

This commit is contained in:
enzi221
2025-05-25 21:00:09 +09:00
parent a5fbc43be4
commit 7eab920d78

View File

@@ -20,7 +20,7 @@
<svelte:window onmessage={async (e) => { <svelte:window onmessage={async (e) => {
if(e.origin.startsWith("https://sv.risuai.xyz") || e.origin.startsWith("http://127.0.0.1") || e.origin === window.location.origin){ if(e.origin.startsWith("https://sv.risuai.xyz") || e.origin.startsWith("http://127.0.0.1") || e.origin === window.location.origin){
if(e.data.msg.type === 'drive'){ if(e.data.msg?.type === 'drive'){
await loadRisuAccountData() await loadRisuAccountData()
DBState.db.account.data.refresh_token = e.data.msg.data.refresh_token DBState.db.account.data.refresh_token = e.data.msg.data.refresh_token
DBState.db.account.data.access_token = e.data.msg.data.access_token DBState.db.account.data.access_token = e.data.msg.data.access_token
@@ -28,7 +28,7 @@
await saveRisuAccountData() await saveRisuAccountData()
popup.close() popup.close()
} }
else if(e.data.msg.data.vaild){ else if(e.data.msg?.data.vaild){
openIframe = false openIframe = false
DBState.db.account = { DBState.db.account = {
id: e.data.msg.id, id: e.data.msg.id,