Domain Lookup Tasks Fixes

This commit is contained in:
vfedosevich 2014-12-12 02:34:59 -08:00
parent 3fc43037bf
commit 6fcfa205f5
3 changed files with 5 additions and 3 deletions

View file

@ -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
};