Skip to content

Commit

Permalink
refactor: Bug fix for issuer_state
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Mar 29, 2024
1 parent 437e6ba commit 4dd7f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/oidc4vc/get_authorization_uri_for_issuer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Future<void> getAuthorizationUriForIssuer({
final dynamic authorizedCode = grants['authorization_code'];
if (authorizedCode != null &&
authorizedCode is Map &&
authorizedCode.containsKey('issuer_statee')) {
authorizedCode.containsKey('issuer_state')) {
issuerState = authorizedCode['issuer_state'] as String;
}
}
Expand Down

0 comments on commit 4dd7f59

Please sign in to comment.