mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Pass in null for sso organziation for now. (#531)
This will bypass cryptoagent
This commit is contained in:
parent
e90cc40f68
commit
1bd968a023
@ -151,7 +151,7 @@ export class LoginCommand {
|
|||||||
if (clientId != null && clientSecret != null) {
|
if (clientId != null && clientSecret != null) {
|
||||||
response = await this.authService.logInApiKey(clientId, clientSecret);
|
response = await this.authService.logInApiKey(clientId, clientSecret);
|
||||||
} else if (ssoCode != null && ssoCodeVerifier != null) {
|
} else if (ssoCode != null && ssoCodeVerifier != null) {
|
||||||
response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri);
|
response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri, null);
|
||||||
} else {
|
} else {
|
||||||
response = await this.authService.logIn(email, password);
|
response = await this.authService.logIn(email, password);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user