fix(AccountView): update OAuth user ID retrieval to use user ID instead of hashed ID
All checks were successful
Deploy to production / deploy (push) Successful in 2m0s

This commit is contained in:
Torsten Schulz (local)
2026-05-15 14:43:27 +02:00
parent 2d048d4cab
commit 52f2d52916

View File

@@ -196,7 +196,7 @@ export default {
return;
}
this.oauthLoading = true;
const uid = this.user?.hashedId || '';
const uid = this.user?.id || '';
window.location.href = `/api/auth/oauth/user/${encodeURIComponent(providerSlug)}/start?userid=${encodeURIComponent(uid)}`;
},
async removeOAuthIdentity(identityId) {