Merge pull request #271 from cubedro/develop

fixed secret bug
This commit is contained in:
Marian OANCΞA 2015-08-24 10:06:08 +03:00
commit 5e6e3d5105
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -14,7 +14,7 @@ if( !_.isUndefined(process.env.WS_SECRET) && !_.isNull(process.env.WS_SECRET) )
}
else
{
WS_SECRET = process.env.WS_SECRET.split('');
WS_SECRET = [process.env.WS_SECRET];
}
}
else