fix(pterodactyl): oops lol

This commit is contained in:
Seaswimmer 2024-02-29 23:52:48 -05:00
parent 0d21a52ce3
commit 9e63b4e798
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -29,11 +29,8 @@ async def establish_websocket_connection(coginstance: Pterodactyl) -> None:
logger.debug("Authentication message sent") logger.debug("Authentication message sent")
coginstance.websocket = websocket coginstance.websocket = websocket
await loop(coginstance, websocket)
async def loop(coginstance: Pterodactyl, websocket: websockets.WebSocketClientProtocol) -> None:
current_status = '' current_status = ''
while True: # pylint: disable=too-many-nested-blocks while True: # pylint: disable=too-many-nested-blocks
message = await websocket.recv() message = await websocket.recv()
if json.loads(message)['event'] in ('token expiring', 'token expired'): if json.loads(message)['event'] in ('token expiring', 'token expired'):