Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer committed Mar 30, 2020
1 parent cd05b2e commit 02c6d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oauth2/callback.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
var decodedState = atob(
decodeURIComponent(hashParams['state'])
).split('_luigiNonce=');
var appState = decodeURI(decodedState[0]) || '';
var appState = decodeURI(decodedState[0] || '');
var nonce = decodedState[1];

if (nonce !== sessionStorage.getItem('luigi.nonceValue')) {
Expand Down

0 comments on commit 02c6d8f

Please sign in to comment.