pull/618/head
Usama015 2023-06-20 14:31:10 +05:00
parent c32d772275
commit d3d772a225
1 changed files with 15 additions and 15 deletions

View File

@ -29,7 +29,7 @@ _IPGEO_MAPPING ={
'state_prov':'state', 'state_prov':'state',
'zipcode':'zipcode', 'zipcode':'zipcode',
'ip':'ip-src' 'ip':'ip-src'
} }
def handler(q=False): def handler(q=False):
@ -37,7 +37,7 @@ def handler(q=False):
if q is False: if q is False:
return False return False
request = json.loads(q) request = json.loads(q)
if not request.get('config'): if request.get('config'):
return {'error' : 'IpGeolocation Configuration is missing'} return {'error' : 'IpGeolocation Configuration is missing'}
if not request['config'].get('apiKey'): if not request['config'].get('apiKey'):
return {'error' : 'IpGeolocation apiKey is missing'} return {'error' : 'IpGeolocation apiKey is missing'}