File tree Expand file tree Collapse file tree
libs/SalesforceSDK/src/com/salesforce/androidsdk/auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ import com.salesforce.androidsdk.security.BiometricAuthenticationManager.Compani
9696import com.salesforce.androidsdk.security.SalesforceKeyGenerator.getRandom128ByteKey
9797import com.salesforce.androidsdk.security.SalesforceKeyGenerator.getSHA256Hash
9898import com.salesforce.androidsdk.util.SalesforceSDKLogger
99+ import com.salesforce.androidsdk.util.SalesforceSDKLogger.e
99100import kotlinx.coroutines.Dispatchers.Default
100101import kotlinx.coroutines.runBlocking
101102import kotlinx.coroutines.withContext
@@ -181,7 +182,7 @@ internal class NativeLoginManager(
181182 val authRequest = RestRequest (
182183 POST ,
183184 LOGIN ,
184- " $loginUrl$OAUTH_AUTH_PATH${attestationValue?.let { " ?$ATTESTATION =${Uri .encode(it) } " } ? : " " } " , // Full path for unauthenticated request
185+ " $loginUrl$OAUTH_AUTH_PATH${attestationValue?.let { " ?$ATTESTATION =${it } " } ? : " " } " , // Full path for unauthenticated request
185186 authRequestBody,
186187 authRequestHeaders,
187188 )
@@ -992,7 +993,7 @@ internal class NativeLoginManager(
992993 runCatching {
993994 client.oAuthRefreshInterceptor.refreshAccessToken()
994995 }.onFailure { e ->
995- SalesforceSDKLogger . e(TAG , " Error encountered while unlocking." , e)
996+ e(TAG , " Error encountered while unlocking." , e)
996997 }
997998 bioAuthManager?.onUnlock()
998999 activity.finish()
You can’t perform that action at this time.
0 commit comments