Check if option is present
This commit is contained in:
parent
4d5e712e85
commit
f38380d156
|
@ -93,7 +93,7 @@ class Authority(db.Model):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
for option in json.loads(self.options):
|
for option in json.loads(self.options):
|
||||||
if option["name"] == 'cab_compliant':
|
if "name" in option and option["name"] == 'cab_compliant':
|
||||||
return option["value"]
|
return option["value"]
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in New Issue