master
Mark Moffat 2018-10-05 22:45:39 +09:30
parent 5db27a523b
commit 1d2522668a
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -252,7 +252,7 @@ app.use((req, res, next) => {
// update config when modified
app.use((req, res, next) => {
next();
if (res.configDirty) {
if(res.configDirty){
config = common.getConfig();
app.config = config;
}