Fix unhandled exception with port check function

This commit is contained in:
Zedifus 2021-09-24 22:20:13 +01:00
parent 3e84df601f
commit d93038a70d

View File

@ -87,6 +87,7 @@ class Helpers:
@staticmethod @staticmethod
def check_port(server_port): def check_port(server_port):
try:
host_public = get('https://api.ipify.org').text host_public = get('https://api.ipify.org').text
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
result = sock.connect_ex((host_public ,server_port)) result = sock.connect_ex((host_public ,server_port))
@ -95,6 +96,8 @@ class Helpers:
return True return True
else: else:
return False return False
except Exception as err:
return False
def check_for_old_logs(self, db_helper): def check_for_old_logs(self, db_helper):