diff --git a/DnsServerCore/Zone.cs b/DnsServerCore/Zone.cs index cd15ea5f..401e7d47 100644 --- a/DnsServerCore/Zone.cs +++ b/DnsServerCore/Zone.cs @@ -517,6 +517,9 @@ namespace DnsServerCore newRecords.Add(record); } + if (records.Length == newRecords.Count) + return records; + if (newRecords.Count > 0) return newRecords.ToArray();