Skip to content

Commit 7e6b32e

Browse files
committed
Moved the token type key to BaseCredentialsManager class
1 parent efba1e3 commit 7e6b32e

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

auth0/src/main/java/com/auth0/android/authentication/storage/SecureCredentialsManager.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,8 @@ public class SecureCredentialsManager @VisibleForTesting(otherwise = VisibleForT
897897
callback.onFailure(
898898
CredentialsManagerException(
899899
CredentialsManagerException.Code.MFA_REQUIRED,
900-
error.message ?: "Multi-factor authentication is required to complete the credential renewal.",
900+
error.message
901+
?: "Multi-factor authentication is required to complete the credential renewal.",
901902
error,
902903
error.mfaRequiredErrorPayload
903904
)
@@ -1055,7 +1056,8 @@ public class SecureCredentialsManager @VisibleForTesting(otherwise = VisibleForT
10551056
callback.onFailure(
10561057
CredentialsManagerException(
10571058
CredentialsManagerException.Code.MFA_REQUIRED,
1058-
error.message ?: "Multi-factor authentication is required to complete the credential renewal.",
1059+
error.message
1060+
?: "Multi-factor authentication is required to complete the credential renewal.",
10591061
error,
10601062
error.mfaRequiredErrorPayload
10611063
)

0 commit comments

Comments
 (0)