Skip to content

Commit d246c7c

Browse files
Merge pull request #12 from michaeljymsgutierrez/features/update-vars-hoisting
features/update-vars-hoisting
2 parents 132b7d7 + c3535aa commit d246c7c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

webhook.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ const fastify = require('fastify')({
1111
logger: true,
1212
});
1313

14-
let host = ip.address();
15-
let port = process.env.WEBHOOK_PORT ? process.env.WEBHOOK_PORT : '8080';
14+
const host = ip.address();
15+
const port = process.env.WEBHOOK_PORT ? process.env.WEBHOOK_PORT : '8080';
16+
1617
let AUTHOR = null;
1718
let DATE = null;
1819
let HASH = null;

0 commit comments

Comments
 (0)