We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10ae48 commit 13b6468Copy full SHA for 13b6468
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jderobot-commsmanager",
3
- "version": "1.0.7",
+ "version": "1.0.8",
4
"main": "dist/main.js",
5
"typings": "dist/index.d.ts",
6
"scripts": {
src/components/CommsManager.ts
@@ -69,15 +69,6 @@ export default class CommsManager {
69
}, 1000);
70
}
71
};
72
-
73
- this.ws.onerror = (e: any) => {
74
- console.error("Socket encountered error: ", e.message, "Closing socket");
75
- this.ws.close();
76
- setTimeout(function () {
77
- delete CommsManager.instance;
78
- CommsManager.instance = new CommsManager();
79
- }, 1000);
80
- };
81
82
83
// Singleton behavior
0 commit comments