Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rust/core/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ impl AppError {
"invalid_timestamp" => Self::InvalidTimestamp,
"rp_signature_expired" => Self::RpSignatureExpired,
"identity_attributes_not_matched" => Self::IdentityAttributesNotMatched,
// An early android version using this error code instead of `identity_attributes_not_matched`
"identity_attribute_mismatch" => Self::IdentityAttributesNotMatched,
Comment thread
Takaros999 marked this conversation as resolved.
Outdated
_ => Self::GenericError,
}
}
Expand Down
Loading