@vgroup/dialbox 0.2.98 → 0.2.99

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.
@@ -1661,7 +1661,9 @@ class IncomeingCallSocketService {
1661
1661
  // userId: localStorage.getItem('userId'),
1662
1662
  // authKey: localStorage.getItem('ext_token')
1663
1663
  // };
1664
- this.socket?.send(JSON.stringify(authMessage));
1664
+ setInterval(() => {
1665
+ this.socket?.send(JSON.stringify(authMessage));
1666
+ }, 1000);
1665
1667
  };
1666
1668
  this.socket.onmessage = (msg) => {
1667
1669
  console.log("WS RAW:", msg.data);