Exit node filtering

This commit is contained in:
Owen
2025-06-19 09:29:54 -04:00
parent 3b3d7b134a
commit a0ac757982
2 changed files with 38 additions and 17 deletions

View File

@@ -95,6 +95,9 @@ export class Config {
}
public getDomain(domainId: string) {
if (!this.rawConfig.domains || !this.rawConfig.domains[domainId]) {
return null;
}
return this.rawConfig.domains[domainId];
}