Skip to content

Commit c2f13bd

Browse files
committed
var name tweak
1 parent 73d0cdd commit c2f13bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/D2L.Bmx/OktaAuthenticator.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ bool experimental
6060
if( !ignoreCache && TryAuthenticateFromCache( org, user, oktaClientFactory, out var oktaAuthenticated ) ) {
6161
return new OktaAuthenticatedContext( Org: org, User: user, Client: oktaAuthenticated );
6262
}
63-
if( await TryAuthenticateWithDSSOAsync( org, user, oktaClientFactory, experimental ) is { } oktaAuthenticated ) {
64-
return new OktaAuthenticatedContext( Org: org, User: user, Client: oktaAuthenticated );
63+
if( await TryAuthenticateWithDSSOAsync( org, user, oktaClientFactory, experimental ) is { } oktaDSSOAuthenticated ) {
64+
return new OktaAuthenticatedContext( Org: org, User: user, Client: oktaDSSOAuthenticated );
6565
}
6666
if( nonInteractive ) {
6767
throw new BmxException( "Okta authentication failed. Please run `bmx login` first." );

0 commit comments

Comments
 (0)