Skip to content

Commit eebdceb

Browse files
committed
remove forced https on nodered button
1 parent 78bc1aa commit eebdceb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2739,7 +2739,9 @@ export class NoderedCtrl {
27392739
}
27402740
this.name = this.name.split("@").join("").split(".").join("");
27412741
this.name = this.name.toLowerCase();
2742-
this.noderedurl = "https://" + WebSocketClientService.nodered_domain_schema.replace("$nodered_id$", this.name);
2742+
// 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);
27432745
// // this.GetNoderedInstance();
27442746
this.GetNoderedInstance();
27452747
});

0 commit comments

Comments
 (0)