Fix bug where invalid server Id leads to stack

This commit is contained in:
amcmanu3 2024-01-11 19:53:22 -05:00
parent 1d32afa09d
commit 5f2236563b

View File

@ -462,7 +462,10 @@ class ServersController(metaclass=Singleton):
@staticmethod
def server_id_exists(server_id):
srv = ServersController().get_server_instance_by_id(server_id)
try:
srv = ServersController().get_server_instance_by_id(server_id)
except ValueError:
return False
return srv.stats_helper.server_id_exists()
@staticmethod