Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
Standard JS does not like semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
sammacbeth authored Sep 26, 2019
1 parent e3e12a0 commit 0aa786e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Hyperdiscovery extends EventEmitter {
if (err && err.code !== 'EADDRINUSE' && err.message !== 'Could not bind') return this.emit('error', err)
const port = this._portAlts.shift()
debug(`Port ${this._port} in use. Trying ${port}.`)
this._port = port;
this._port = port
this.listen(port)
})

Expand Down

0 comments on commit 0aa786e

Please sign in to comment.