Skip to content

Commit

Permalink
feat: Remove claim check in oidc4vc test
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Nov 10, 2023
1 parent 82a0fe2 commit e333a7f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/dashboard/qr_code/qr_code_scan/cubit/qr_code_scan_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -496,12 +496,12 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
final keys = <String>[];
state.uri?.queryParameters.forEach((key, value) => keys.add(key));

if (keys.contains('claims')) {
/// claims is old standard
throw ResponseMessage(
message: ResponseString.RESPONSE_STRING_thisRequestIsNotSupported,
);
}
// if (keys.contains('claims')) {
// /// claims is old standard
// throw ResponseMessage(
// message: ResponseString.RESPONSE_STRING_thisRequestIsNotSupported,
// );
// }

if (!keys.contains('response_type')) {
throw ResponseMessage(
Expand Down

0 comments on commit e333a7f

Please sign in to comment.