You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In com.auth0.android.authentication.AuthenticationException there is a function:
public fun getDescription(): String {
if (!TextUtils.isEmpty(description)) {
return description!!
}
return if (UNKNOWN_ERROR == getCode()) {
String.format("Received error with code %s", getCode())
} else "Failed with unknown error"
}
where I would expect latter if to check for non-equal UNKNOWN_ERROR != getCode() instead.
Reproduction
Open AuthenticationException
Check logic of getDescription()
Additional context
No response
Auth0.Android version
2.11.0
Android version(s)
14
The text was updated successfully, but these errors were encountered:
Checklist
Description
In
com.auth0.android.authentication.AuthenticationException
there is a function:where I would expect latter
if
to check for non-equalUNKNOWN_ERROR != getCode()
instead.Reproduction
AuthenticationException
getDescription()
Additional context
No response
Auth0.Android version
2.11.0
Android version(s)
14
The text was updated successfully, but these errors were encountered: