forked from svrjs/svrjs
Add process.serverConfig.productName
This commit is contained in:
parent
67658ad329
commit
489ec9741a
1 changed files with 3 additions and 1 deletions
|
@ -319,7 +319,9 @@ if (process.serverConfig.allowPostfixDoubleSlashes === undefined)
|
|||
if (process.serverConfig.optOutOfStatisticsServer === undefined)
|
||||
process.serverConfig.optOutOfStatisticsServer = false;
|
||||
|
||||
process.serverConfig.version = version; // Compatiblity for very old SVR.JS mods
|
||||
// Compatiblity for very old SVR.JS mods
|
||||
process.serverConfig.version = version;
|
||||
process.serverConfig.productName = name;
|
||||
|
||||
const serverconsole = require("./utils/serverconsole.js");
|
||||
|
||||
|
|
Reference in a new issue