added secret split by | char

This commit is contained in:
cubedro 2015-08-17 17:07:26 +03:00
parent 8573431f9f
commit c2a98f5728

7
app.js
View File

@ -10,9 +10,16 @@ if( !_.isUndefined(process.env.WS_SECRET) && !_.isNull(process.env.WS_SECRET) )
WS_SECRET = ["eth-net-stats-has-a-secret"];
}
else
{
if( process.env.WS_SECRET.indexOf('|') > 0 )
{
WS_SECRET = process.env.WS_SECRET.split('|');
}
else
{
WS_SECRET = [process.env.WS_SECRET];
}
}
var banned = require('./lib/utils/config').banned;