diff --git a/structures/app.py b/structures/app.py index fcbd59f..29697cb 100644 --- a/structures/app.py +++ b/structures/app.py @@ -146,7 +146,8 @@ class App: def get_host(self): ips = gethostbyname_ex(gethostname())[2] - for ip in ips: - if ip.split(".")[2] == "1": - return ip - return ips[1] + if len(ips) > 1: + for ip in ips: + if ip.split(".")[2] == "1": + return ip + return ips[0]