Skip to content

Commit

Permalink
Remove redirectUri and clientId test for siopv2 #1985
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 6, 2023
1 parent b15e86f commit 8085e6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 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 @@ -633,14 +633,14 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
);
}

if (isUrl && redirectUri != clientId) {
throw ResponseMessage(
data: {
'error': 'invalid_request',
'error_description': 'The client_id must be equal to redirect_uri.',
},
);
}
// if (isUrl && redirectUri != clientId) {
// throw ResponseMessage(
// data: {
// 'error': 'invalid_request',
// 'error_description': 'The client_id must be equal to redirect_uri.',
// },
// );
// }

if (isSecurityHigh) {
if (!keys.contains('nonce')) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: altme
description: AltMe Flutter App
version: 1.20.35+284
version: 1.20.36+285
publish_to: none

environment:
Expand Down

0 comments on commit 8085e6d

Please sign in to comment.