mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-21 16:00:26 +01:00
Parse int (#6853)
* Store config fields as JSON in the db Fewer parseInts * Remove unnecessary parseInts * remove some dupe code add tests * remove console.log * remove more parseInts * WIP: read meta.configs defaults from defaults.json remove more parseInts * more work * add log for failing test * update admin pwd * fix tests, dont require posts/cache before configs are initialized * handle saves * Test boolean conditions * remove more parseInts * Fix boolean values * remove lots more parseInts * removed json parsing * renamed var to number * categories dont have timestamp
This commit is contained in:
committed by
GitHub
parent
60c58870af
commit
9c022afae1
@@ -179,12 +179,11 @@ function setupExpressApp(app, callback) {
|
||||
}));
|
||||
|
||||
var hsts_option = {
|
||||
maxAge: parseInt(meta.config['hsts-maxage'], 10) || 31536000,
|
||||
includeSubdomains: !!parseInt(meta.config['hsts-subdomains'], 10),
|
||||
preload: !!parseInt(meta.config['hsts-preload'], 10),
|
||||
maxAge: meta.config['hsts-maxage'],
|
||||
includeSubdomains: !!meta.config['hsts-subdomains'],
|
||||
preload: !!meta.config['hsts-preload'],
|
||||
setIf: function () {
|
||||
// If not set, default to on - previous and recommended behavior
|
||||
return meta.config['hsts-enabled'] === undefined || !!parseInt(meta.config['hsts-enabled'], 10);
|
||||
return !!meta.config['hsts-enabled'];
|
||||
},
|
||||
};
|
||||
app.use(helmet({
|
||||
@@ -196,8 +195,8 @@ function setupExpressApp(app, callback) {
|
||||
auth.initialize(app, middleware);
|
||||
|
||||
var toobusy = require('toobusy-js');
|
||||
toobusy.maxLag(parseInt(meta.config.eventLoopLagThreshold, 10) || 100);
|
||||
toobusy.interval(parseInt(meta.config.eventLoopInterval, 10) || 500);
|
||||
toobusy.maxLag(meta.config.eventLoopLagThreshold);
|
||||
toobusy.interval(meta.config.eventLoopInterval);
|
||||
|
||||
setupAutoLocale(app, callback);
|
||||
}
|
||||
@@ -246,7 +245,7 @@ function setupAutoLocale(app, callback) {
|
||||
});
|
||||
|
||||
app.use(function (req, res, next) {
|
||||
if (parseInt(req.uid, 10) > 0 || parseInt(meta.config.autoDetectLang, 10) !== 1) {
|
||||
if (parseInt(req.uid, 10) > 0 || !meta.config.autoDetectLang) {
|
||||
return next();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user