Exit node filtering

This commit is contained in:
Owen 2025-06-19 09:29:54 -04:00
parent 3b3d7b134a
commit a0ac757982
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
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];
}