v6.3.10.0

Changelog: https://roxy-wi.org/changelog#6_3_10
pull/364/head
Aidaho 2023-04-24 14:11:01 +03:00
parent c610e9c03f
commit d67db4789f
1 changed files with 2 additions and 2 deletions

View File

@ -518,8 +518,8 @@ def select_server_by_name(name):
def select_server_id_by_ip(server_ip):
try:
server_id = Server.get(Server.ip == server_ip).server_id
except Exception as e:
return out_error(e)
except Exception:
return None
else:
return server_id