core: fix url generate in ws conn

pull/61/head
undefined 4 years ago
parent 425982a162
commit 15d7edcab9

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "2.20.20",
"version": "2.20.21",
"bin": "bin/hydrooj.js",
"main": "dist/loader.js",
"typings": "dist/loader.d.ts",

@ -310,7 +310,7 @@ export class HandlerCommon {
try {
const { anchor } = args;
if (args.domainId) name += '_with_domainId';
else if (this.domain?.host !== this.request.host && this.domainId !== 'system') {
else if ((!this.request.host || this.domain?.host !== this.request.host) && this.domainId !== 'system') {
name += '_with_domainId';
args.domainId = this.domainId;
}

Loading…
Cancel
Save