in src/ConfigurationClientManager.ts [236:245]
export function getValidDomain(host: string): string {
for (const label of TRUSTED_DOMAIN_LABELS) {
const index = host.lastIndexOf(label);
if (index !== -1) {
return host.substring(index);
}
}
return "";
}