pixl-server-web 1.3.22 → 1.3.23
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/lib/http.js +4 -0
- package/lib/https.js +4 -0
- package/package.json +1 -1
package/lib/http.js
CHANGED
|
@@ -234,6 +234,10 @@ module.exports = class HTTP {
|
|
|
234
234
|
self.logDebug(3, "Actual HTTP listener port chosen: " + port);
|
|
235
235
|
}
|
|
236
236
|
self.listeners.push(listener);
|
|
237
|
+
|
|
238
|
+
// LEGACY HACK -- FOR CRONICLE VERSIONS UNDER v0.9.34
|
|
239
|
+
self.http = listener;
|
|
240
|
+
|
|
237
241
|
callback();
|
|
238
242
|
} );
|
|
239
243
|
|
package/lib/https.js
CHANGED
|
@@ -232,6 +232,10 @@ module.exports = class HTTP2 {
|
|
|
232
232
|
self.logDebug(3, "Actual HTTPS listener port chosen: " + port);
|
|
233
233
|
}
|
|
234
234
|
self.listeners.push(listener);
|
|
235
|
+
|
|
236
|
+
// LEGACY HACK -- FOR CRONICLE VERSIONS UNDER v0.9.34
|
|
237
|
+
self.https = listener;
|
|
238
|
+
|
|
235
239
|
callback();
|
|
236
240
|
} );
|
|
237
241
|
|
package/package.json
CHANGED