Merge pull request #1028 from thelounge/xpaw/cert-var

Use local variables to check length
This commit is contained in:
Pavel Djundik 2017-04-14 10:52:03 +03:00 committed by GitHub
commit 3e9678d9cf

View file

@ -42,17 +42,20 @@ module.exports = function() {
server = require("http");
server = server.createServer(app);
} else {
server = require("spdy");
const keyPath = Helper.expandHome(config.https.key);
const certPath = Helper.expandHome(config.https.certificate);
if (!config.https.key.length || !fs.existsSync(keyPath)) {
if (!keyPath.length || !fs.existsSync(keyPath)) {
log.error("Path to SSL key is invalid. Stopping server...");
process.exit();
}
if (!config.https.certificate.length || !fs.existsSync(certPath)) {
if (!certPath.length || !fs.existsSync(certPath)) {
log.error("Path to SSL certificate is invalid. Stopping server...");
process.exit();
}
server = require("spdy");
server = server.createServer({
key: fs.readFileSync(keyPath),
cert: fs.readFileSync(certPath)