We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bc1aa commit eebdcebCopy full SHA for eebdceb
1 file changed
OpenFlow/src/public/Controllers.ts
@@ -2739,7 +2739,9 @@ export class NoderedCtrl {
2739
}
2740
this.name = this.name.split("@").join("").split(".").join("");
2741
this.name = this.name.toLowerCase();
2742
- this.noderedurl = "https://" + WebSocketClientService.nodered_domain_schema.replace("$nodered_id$", this.name);
+ // this.noderedurl = "https://" + WebSocketClientService.nodered_domain_schema.replace("$nodered_id$", this.name);
2743
+ this.noderedurl = "//" + WebSocketClientService.nodered_domain_schema.replace("$nodered_id$", this.name);
2744
+ console.log(this.noderedurl);
2745
// // this.GetNoderedInstance();
2746
this.GetNoderedInstance();
2747
});
0 commit comments