mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +01:00
fix: accidental unnecessarily strict conditional that effectively rendered SSO state checking opt-in instead of opt-out
This commit is contained in:
@@ -104,7 +104,7 @@ Auth.reloadRoutes = async function (params) {
|
|||||||
prompt: strategy.prompt || undefined,
|
prompt: strategy.prompt || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (strategy.checkState) {
|
if (strategy.checkState !== false) {
|
||||||
req.session.ssoState = req.csrfToken && req.csrfToken();
|
req.session.ssoState = req.csrfToken && req.csrfToken();
|
||||||
opts.state = req.session.ssoState;
|
opts.state = req.session.ssoState;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user