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 6b47c4c commit 91c19f6Copy full SHA for 91c19f6
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jderobot-commsmanager",
3
- "version": "1.0.11",
+ "version": "1.0.12",
4
"main": "dist/main.js",
5
"typings": "dist/index.d.ts",
6
"scripts": {
src/components/CommsManager.ts
@@ -78,8 +78,8 @@ export default class CommsManager {
78
79
// Singleton behavior
80
public static getInstance(address?: string): CommsManager {
81
+ CommsManager.adress = address ? address : "ws://127.0.0.1:7163";
82
if (!CommsManager.instance) {
- CommsManager.adress = address ? address : "ws://127.0.0.1:7163";
83
CommsManager.instance = new CommsManager();
84
}
85
return CommsManager.instance;
0 commit comments