Add region into location formatting

This commit is contained in:
Gregory Danielson
2020-11-01 16:28:24 -06:00
parent f3bce5f806
commit e1adca3bf0

View File

@ -321,7 +321,7 @@ def location_processing(location, ip_addr):
if location:
location = '~' + location
if country:
location += ", %s" % country
location += ", %s, %s" % (region, country)
hide_full_address = not force_show_full_address
if location and not location.startswith('~'):