Skip to content

Commit a8db835

Browse files
Merge pull request #2062 from gobeli/main
add debug log for redirectUrl check
2 parents f8bb898 + f9d5d93 commit a8db835

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

projects/angular-auth-oidc-client/src/lib/utils/url/url.service.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ export class UrlService {
105105
redirectUriWithoutQueryParams !== currentUrlWithoutQueryParams ||
106106
!redirectUriQueryParamsArePresentInCurrentUrl
107107
) {
108+
this.loggerService.logDebug(
109+
config,
110+
'UrlService.isCallbackFromSts: configured redirectUrl does not match with the current url'
111+
);
112+
108113
return false;
109114
}
110115
}

0 commit comments

Comments
 (0)