Domain Lookup Tasks Fixes
This commit is contained in:
parent
3fc43037bf
commit
6fcfa205f5
3 changed files with 5 additions and 3 deletions
|
@ -302,7 +302,7 @@ namespace WebsitePanel.EnterpriseServer
|
|||
|
||||
var dnsRecord = new DnsRecordInfo
|
||||
{
|
||||
Value = match.Groups[1].Value != null ? match.Groups[1].Value.Replace("\r\n", "").Replace("\r", "").Replace("\n", "").Trim() : null,
|
||||
Value = match.Groups[1].Value != null ? match.Groups[1].Value.Replace("\r\n", "").Replace("\r", "").Replace("\n", "").ToLowerInvariant().Trim() : null,
|
||||
RecordType = recordType,
|
||||
DnsServer = dnsServer
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue