Fixed obtaining ga code from dict

This commit is contained in:
M.Ravi 2017-08-24 16:10:53 +02:00
parent 01b64fec88
commit bf304f9493
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ def google_analytics(request):
# Try checking if we have a www in host, if yes we remove
# that and check in the dict again
if host.startswith('www.'):
ga_prop_id = host[4:]
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS',
False).get(host[4:])
if not settings.DEBUG and ga_prop_id:
return {
'GOOGLE_ANALYTICS_PROPERTY_ID': ga_prop_id