Compare commits

..

2 Commits

Author SHA1 Message Date
d87a942ab3 2.0.16 2023-03-20 18:51:02 +01:00
60e8657467 fix(core): update 2023-03-20 18:51:02 +01:00
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartsocket",
"version": "2.0.15",
"version": "2.0.16",
"description": "easy and secure websocket communication",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartsocket',
version: '2.0.15',
version: '2.0.16',
description: 'easy and secure websocket communication'
}

View File

@ -110,7 +110,8 @@ export class SmartsocketClient {
smartsocketHost: this,
socket: await socketIoClient
.connect(socketUrl, {
multiplex: false,
multiplex: true,
rememberUpgrade: true,
autoConnect: false,
reconnectionAttempts: 0,
rejectUnauthorized: socketUrl.startsWith('https://localhost') ? false : true,