@chat21/chat21-ionic 3.4.27-rc21 → 3.4.27-rc22

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/CHANGELOG.md CHANGED
@@ -8,6 +8,9 @@
8
8
  ### **Copyrigth**:
9
9
  *Tiledesk SRL*
10
10
 
11
+ # 3.4.27-rc22
12
+ - **added**: new WsWorker to manage iframe chrome throttling while tab is in background or hidden
13
+
11
14
  # 3.4.27-rc21
12
15
  - **changed**: new wss reconnect and timeout keepalive
13
16
  - **bug-fixed**: cannot route if senderFullaname contains /
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.4.27-rc21",
4
+ "version": "3.4.27-rc22",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -1301,10 +1301,7 @@ export class AppComponent implements OnInit {
1301
1301
  const WS_URL = appconfig.wsUrl + '?token=' + tiledeskToken
1302
1302
  this.logger.log('[WEBSOCKET-JS] connetWebsocket called in [PROJECT-ITEM] wsUrl ', WS_URL)
1303
1303
  this.webSocketJs.init(
1304
- WS_URL,
1305
- undefined,
1306
- undefined,
1307
- undefined
1304
+ WS_URL
1308
1305
  );
1309
1306
  }
1310
1307