Compare records based on lowercase representation
This commit is contained in:
parent
39b65ceba0
commit
c800f853ac
|
@ -44,8 +44,8 @@ def mergeDomains(zoneData, pdnsData):
|
|||
found = False
|
||||
pdnsDom = list(filter(lambda _x: _x['name'] == domain and _x['type'] == rrType, rrData))
|
||||
if len(pdnsDom) > 0:
|
||||
rrSet = set(_x['content'] for _x in pdnsDom[0]['records'])
|
||||
if rrSet == set(records):
|
||||
rrSet = set(_x['content'].lower() for _x in pdnsDom[0]['records'])
|
||||
if rrSet == set(record.lower() for record in records):
|
||||
found = True
|
||||
|
||||
if not found:
|
||||
|
|
Loading…
Reference in New Issue