Skip to content

Commit

Permalink
Typo (#418)
Browse files Browse the repository at this point in the history
Protocol appears to include the : delimiter
  • Loading branch information
JonTheNiceGuy authored Oct 22, 2024
1 parent c1fcada commit f8281c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/netbird.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const getNetBirdUpCommand = () => {
cmd += " --management-url " + GRPC_API_ORIGIN
}
if (!isNetBirdHosted()) {
let admin_url = window.location.protocol + "://" + window.location.hostname
let admin_url = window.location.protocol + "//" + window.location.hostname
if (window.location.port != "") {
admin_url += ":" + window.location.port
}
Expand Down

0 comments on commit f8281c8

Please sign in to comment.