supply radix -- make the linter happy

This commit is contained in:
Michael Bradley, Jr 2018-09-17 18:13:21 -05:00
parent ebcbc1efe6
commit d03cfebbdf

View File

@ -21,7 +21,7 @@ class WebServer {
} }
this.host = this.webServerConfig.host; this.host = this.webServerConfig.host;
this.port = parseInt(this.webServerConfig.port); this.port = parseInt(this.webServerConfig.port, 10);
this._openBrowser = this.webServerConfig.openBrowser; this._openBrowser = this.webServerConfig.openBrowser;
this.events.emit("status", __("Starting Server")); this.events.emit("status", __("Starting Server"));