godprotocol 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Objects/Manager.js +1 -1
- package/package.json +1 -1
package/Objects/Manager.js
CHANGED
|
@@ -328,7 +328,7 @@ class Manager {
|
|
|
328
328
|
this.server = this.options.server
|
|
329
329
|
if (this.options.server.port)
|
|
330
330
|
this.options.server_domain = `${this.options.server.hostname}:${this.options.server.port}`
|
|
331
|
-
else this.options.server_domain = this.options.hostname
|
|
331
|
+
else this.options.server_domain = this.options.server.hostname
|
|
332
332
|
let handle = create_server({manager: this, ...this.options.server, app: this.options.app })
|
|
333
333
|
|
|
334
334
|
this.handler = (req, res)=>{
|