Skip to content

Commit a73696e

Browse files
committed
remember slash in base url
1 parent 16795c9 commit a73696e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenFlow/src/Config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class Config {
4343
}
4444
if (Config.port != 80 && Config.port != 443) {
4545
result = result + ":" + Config.port + "/";
46-
}
46+
} else { result = result + "/"; }
4747
return result;
4848
}
4949
// public static async get_login_providers():Promise<void> {

OpenFlowNodeRED/src/Config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class Config {
4747
}
4848
if (Config.port != 80 && Config.port != 443) {
4949
result = result + ":" + Config.port + "/";
50-
}
50+
} else { result = result + "/"; }
5151
return result;
5252
}
5353

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.168
1+
0.0.169

0 commit comments

Comments
 (0)