diff --git a/bin/server.py b/bin/server.py index ff142c6..9cb59cc 100644 --- a/bin/server.py +++ b/bin/server.py @@ -61,7 +61,7 @@ def pubLookup(value: str) -> bool: def countryLookup(country: str) -> dict: - if country != 'None' or country is not None: + if country != 'None' or country is not None or country != 'Unknown': return country_info[country] else: return {}