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 368155c commit 6b47c4cCopy full SHA for 6b47c4c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jderobot-commsmanager",
3
- "version": "1.0.10",
+ "version": "1.0.11",
4
"main": "dist/main.js",
5
"typings": "dist/index.d.ts",
6
"scripts": {
src/components/CommsManager.ts
@@ -25,6 +25,11 @@ export default class CommsManager {
25
// Private constructor to only allow single instatiation
26
private constructor() {
27
this.ws = new WebSocket(CommsManager.adress);
28
+ this.setManagerState({
29
+ id: "",
30
+ command: "",
31
+ data: { state: "idle" },
32
+ });
33
this.subscribe(events.STATE_CHANGED, this.setManagerState);
34
this.subscribeOnce(events.INTROSPECTION, this.setHostData);
35
0 commit comments