Validate ondemand_creation if the setting does not exist for a domain.

This commit is contained in:
Ivan Filippov 2016-07-03 12:42:14 -06:00
parent 58c19894a1
commit 273a63db12

View File

@ -755,7 +755,7 @@ def dyndns_update():
return render_template('dyndns.html', response='911'), 200
elif r.is_allowed:
ondemand_creation = DomainSetting.query.filter(DomainSetting.domain == domain).filter(DomainSetting.setting == 'create_via_dyndns').first()
if strtobool(ondemand_creation.value) == True:
if (ondemand_creation != None) and (strtobool(ondemand_creation.value) == True):
record = Record(name=hostname,type='A',data=myip,status=False,ttl=3600)
result = record.add(domain.name)
if result['status'] == 'ok':