polfan-server-js-client 0.2.67 → 0.2.68
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/.idea/workspace.xml +13 -18
- package/build/index.cjs.js +1 -2
- package/build/index.cjs.js.map +1 -1
- package/build/index.umd.js +1 -1
- package/build/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/WebSocketChatClient.ts +1 -2
package/package.json
CHANGED
|
@@ -188,8 +188,7 @@ export class WebSocketChatClient extends AbstractChatClient implements Observabl
|
|
|
188
188
|
|
|
189
189
|
const timeout = setTimeout(() => {
|
|
190
190
|
this.pingInFlight = false;
|
|
191
|
-
this.
|
|
192
|
-
void this.connect();
|
|
191
|
+
this.ws.close(1012); // Service Restart (reconnect)
|
|
193
192
|
}, this.options.ping.pongBackTimeoutMs);
|
|
194
193
|
|
|
195
194
|
this.pingInFlight = true;
|