mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix bug
This commit is contained in:
parent
e34b4998fd
commit
1f0c12f33b
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ class Server:
|
|||
matching = [client for client in self.identified_clients if client.link_type == link_type]
|
||||
return matching or []
|
||||
|
||||
async def listener(self, websocket: websockets.server.WebSocketServerProtocol):
|
||||
async def listener(self, websocket: websockets.server.WebSocketServerProtocol, path):
|
||||
log.info(f"{websocket.remote_address} connected to the server.")
|
||||
connected_client = ConnectedClient(websocket)
|
||||
# Wait for identification
|
||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as f:
|
|||
|
||||
setuptools.setup(
|
||||
name="royalherald",
|
||||
version="5.0b4",
|
||||
version="5.0b5",
|
||||
author="Stefano Pigozzi",
|
||||
author_email="ste.pigozzi@gmail.com",
|
||||
description="A websocket communication protocol",
|
||||
|
|
Loading…
Reference in a new issue