Fix oidc_nonce handling frontend

This commit is contained in:
Simon Bihel
2022-01-26 20:22:26 +00:00
parent b34027b096
commit 74dfe54711

View File

@@ -85,7 +85,7 @@
});
let oidc_nonce_param = '';
if (oidc_nonce != '') {
if (oidc_nonce != null && oidc_nonce != '') {
oidc_nonce_param = `&oidc_nonce=${oidc_nonce}`;
}
client.on('signIn', (result) => {