1
0
Fork 0
forked from svrjs/svrjs

Add process.serverConfig.productName

This commit is contained in:
Dorian Niemiec 2024-08-25 17:15:40 +02:00
parent 67658ad329
commit 489ec9741a

View file

@ -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");