SubDomainZone: minor code refactoring.

This commit is contained in:
Shreyas Zare
2024-09-21 12:49:18 +05:30
parent 764edb1bec
commit d73f971d02

View File

@@ -51,13 +51,13 @@ namespace DnsServerCore.Dns.Zones
{
if (!record.GetAuthGenericRecordInfo().Disabled)
{
_disabled = false;
Disabled = false;
return;
}
}
}
_disabled = true;
Disabled = true;
}
#endregion