From 5afb25e0a108fe88f21c156d22888326ac910ad1 Mon Sep 17 00:00:00 2001 From: monty Date: Tue, 3 Dec 2019 10:24:12 +0100 Subject: [PATCH] fix --- server.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/server.js b/server.js index 43db9e0..1b01920 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,7 @@ const simpleIcons = require('simple-icons'); const con = require('./constants'); let { port, hostname } = { - port: 3621 + port: 3621, hostname: 'localhost' }; @@ -103,9 +103,7 @@ module.exports = (client) => { }); }); - app.listen( - port, hostname, () => { - console.log(`Listening on ${port}`); - } - ); + app.listen(port, hostname, () => { + console.log(`Listening on ${port}`); + }); };