Merge pull request #168 from zored/master

Removed redundant condition.
This commit is contained in:
Max Wu 2016-09-06 20:36:40 +08:00 committed by GitHub
commit 1d210d1fa5
1 changed files with 5 additions and 11 deletions

16
app.js
View File

@ -509,17 +509,11 @@ io.sockets.on('connection', realtime.connection);
//listen
function startListen() {
if (config.usessl) {
server.listen(config.port, function () {
logger.info('HTTPS Server listening at port %d', config.port);
config.maintenance = false;
});
} else {
server.listen(config.port, function () {
logger.info('HTTP Server listening at port %d', config.port);
config.maintenance = false;
});
}
server.listen(config.port, function () {
var schema = config.usessl ? 'HTTPS' : 'HTTP';
logger.info('%s Server listening at port %d', schema, config.port);
config.maintenance = false;
});
}
// sync db then start listen