We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68b1ce commit dc8728bCopy full SHA for dc8728b
webAO/client/aoHost.ts
@@ -11,7 +11,7 @@ export const setAOhost = (val: string) => {
11
console.log("Upgrading asset link to https");
12
val = val.replace("http:", "https:");
13
}
14
- if (AO_HOST.length < 5 || !AO_HOST) {
+ if (AO_HOST.length < 5 || !AO_HOST || AO_HOST.includes(`//attorneyoffline.de/`)) {
15
AO_HOST = val;
16
17
console.log("Asset URL ist now " + AO_HOST);
webAO/master.ts
@@ -15,7 +15,7 @@ interface AOServer {
port?: number;
ws_port?: number;
wss_port?: number;
18
- assets?: string;
+ asset?: string;
19
20
21
const clientVersion = process.env.npm_package_version;
0 commit comments