added secret split by | char

This commit is contained in:
cubedro 2015-08-17 17:07:26 +03:00
parent 8573431f9f
commit c2a98f5728
1 changed files with 8 additions and 1 deletions

9
app.js
View File

@ -11,7 +11,14 @@ if( !_.isUndefined(process.env.WS_SECRET) && !_.isNull(process.env.WS_SECRET) )
}
else
{
WS_SECRET = [process.env.WS_SECRET];
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;