@koi-design/callkit 2.1.4-beta.2 → 2.1.4

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/dist/index.js CHANGED
@@ -566,7 +566,7 @@ var SOCKET_RECONNECT_CONFIG = {
566
566
  delay: 1e3,
567
567
  pingInterval: 3e4,
568
568
  pingTimeout: 5e3,
569
- excludeLogEvents: [SocketReceiveEvent.WAITING_QUEUE]
569
+ excludeLogEvents: [SocketReceiveEvent.WAITING_QUEUE, SocketReceiveEvent.PONG]
570
570
  };
571
571
  var SIP_RECONNECT_CONFIG = {
572
572
  enabled: true,
@@ -715,7 +715,7 @@ var Call = class {
715
715
  // package.json
716
716
  var package_default = {
717
717
  name: "@koi-design/callkit",
718
- version: "2.1.4-beta.2",
718
+ version: "2.1.4",
719
719
  description: "callkit",
720
720
  author: "koi",
721
721
  license: "ISC",
@@ -2477,7 +2477,6 @@ var Socket = class {
2477
2477
  const callUuid = content?.callUuid || "";
2478
2478
  if (data.event === SocketReceiveEvent.PONG) {
2479
2479
  this.lastPingTime = Date.now();
2480
- return;
2481
2480
  }
2482
2481
  if (data.event === SocketReceiveEvent.START_CONFIRM) {
2483
2482
  this.setConnectAuthState("startConfirm", true);