Skip to content

Commit dc8728b

Browse files
committed
whoops
1 parent d68b1ce commit dc8728b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webAO/client/aoHost.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const setAOhost = (val: string) => {
1111
console.log("Upgrading asset link to https");
1212
val = val.replace("http:", "https:");
1313
}
14-
if (AO_HOST.length < 5 || !AO_HOST) {
14+
if (AO_HOST.length < 5 || !AO_HOST || AO_HOST.includes(`//attorneyoffline.de/`)) {
1515
AO_HOST = val;
1616
}
1717
console.log("Asset URL ist now " + AO_HOST);

webAO/master.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface AOServer {
1515
port?: number;
1616
ws_port?: number;
1717
wss_port?: number;
18-
assets?: string;
18+
asset?: string;
1919
}
2020

2121
const clientVersion = process.env.npm_package_version;

0 commit comments

Comments
 (0)