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
All checks were successful
Deploy to production / deploy (push) Successful in 2m0s
This commit is contained in:
@@ -196,7 +196,7 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.oauthLoading = true;
|
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)}`;
|
window.location.href = `/api/auth/oauth/user/${encodeURIComponent(providerSlug)}/start?userid=${encodeURIComponent(uid)}`;
|
||||||
},
|
},
|
||||||
async removeOAuthIdentity(identityId) {
|
async removeOAuthIdentity(identityId) {
|
||||||
|
|||||||
Reference in New Issue
Block a user