Skip to content

Commit 59fda80

Browse files
push for virtual office
updated tests delete extraneous files srv test lint
1 parent 4901502 commit 59fda80

File tree

4 files changed

+202
-129
lines changed

4 files changed

+202
-129
lines changed

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,6 @@ export function parseUnsignedInteger(value: unknown): number | null {
11661166
* @returns void
11671167
*/
11681168
export function checkParentDomainMatch(address: string, srvHost: string): void {
1169-
return;
11701169
// Remove trailing dot if exists on either the resolved address or the srv hostname
11711170
const normalizedAddress = address.endsWith('.') ? address.slice(0, address.length - 1) : address;
11721171
const normalizedSrvHost = srvHost.endsWith('.') ? srvHost.slice(0, srvHost.length - 1) : srvHost;

0 commit comments

Comments
 (0)