Skip to content
Snippets Groups Projects
Commit 39feb54a authored by syuilo's avatar syuilo
Browse files

Fix: Add missing semicolon

parent 82604640
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ function createServer() {
Object.keys(config.https).forEach(k => {
certs[k] = fs.readFileSync(config.https[k]);
});
certs['allowHTTP1'] = true
certs['allowHTTP1'] = true;
return http2.createSecureServer(certs, app.callback());
} else {
return http.createServer(app.callback());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment