Compare records based on lowercase representation

This commit is contained in:
Sebastian Lohff 2019-05-31 12:53:00 +02:00
parent 39b65ceba0
commit c800f853ac
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ def mergeDomains(zoneData, pdnsData):
found = False found = False
pdnsDom = list(filter(lambda _x: _x['name'] == domain and _x['type'] == rrType, rrData)) pdnsDom = list(filter(lambda _x: _x['name'] == domain and _x['type'] == rrType, rrData))
if len(pdnsDom) > 0: if len(pdnsDom) > 0:
rrSet = set(_x['content'] for _x in pdnsDom[0]['records']) rrSet = set(_x['content'].lower() for _x in pdnsDom[0]['records'])
if rrSet == set(records): if rrSet == set(record.lower() for record in records):
found = True found = True
if not found: if not found: