Merge pull request #869 from jdutchik/339_bug_fix

339 Bug Fix for Invalid Domain Name
This commit is contained in:
Igor Chubin 2023-11-03 08:33:06 +01:00 committed by GitHub
commit 9c2de2801b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -406,12 +406,17 @@ def location_processing(location, ip_addr):
if location and location.lstrip('~ ').startswith('@'): if location and location.lstrip('~ ').startswith('@'):
try: try:
location, region, country = _get_location( if (location.lstrip('~ ')[1:] == ""):
socket.gethostbyname( location, region, country = NOT_FOUND_LOCATION, None, None
location.lstrip('~ ')[1:]))
location = '~' + location else:
location = _fully_qualified_location(location, region, country) location, region, country = _get_location(
hide_full_address = not force_show_full_address socket.gethostbyname(
location.lstrip('~ ')[1:]))
location = '~' + location
location = _fully_qualified_location(location, region, country)
hide_full_address = not force_show_full_address
except: except:
location, region, country = NOT_FOUND_LOCATION, None, None location, region, country = NOT_FOUND_LOCATION, None, None