roster-server 1.4.8 → 1.5.0
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -201,7 +201,7 @@ class Roster {
|
|
|
201
201
|
|
|
202
202
|
// Primero iniciar el servidor HTTPS
|
|
203
203
|
httpsServer.listen(this.port, '0.0.0.0', () => {
|
|
204
|
-
console.log('ℹ️ HTTPS server listening on port
|
|
204
|
+
console.log('ℹ️ HTTPS server listening on port ' + this.port);
|
|
205
205
|
|
|
206
206
|
// Después iniciar el servidor HTTP
|
|
207
207
|
httpServer.listen(80, '0.0.0.0', () => {
|