fix(core): update

This commit is contained in:
Philipp Kunz 2023-01-05 18:05:36 +01:00
parent db63e7bf79
commit 8087bab197
2 changed files with 9 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartproxy',
version: '3.0.47',
version: '3.0.48',
description: 'a proxy for handling high workloads of proxying'
}

View File

@ -253,7 +253,14 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
ws.on('message', async (message) => {
if (!wscConnectedDeferred) {
wscConnectedDeferred = plugins.smartpromise.defer();
const wsc = new plugins.wsDefault(`wss://${this.router.routeReq(reqArg).destinationIp}:${this.router.routeReq(reqArg).destinationPort}${reqArg.url}`);
let wsc;
try {
wsc = new plugins.wsDefault(`wss://${this.router.routeReq(reqArg).destinationIp}:${this.router.routeReq(reqArg).destinationPort}${reqArg.url}`);
} catch (err) {
console.log(err);
ws.terminate();
return;
}
wsc.on('open', () => {
wscConnectedDeferred.resolve(wsc);