typo in function name

This commit is contained in:
Christoph Stahl 2022-12-06 15:19:13 +01:00
parent fed5e65deb
commit a85c254c9f

View file

@ -385,7 +385,6 @@ async def handle_register_client(sid: str, data: dict[str, Any]) -> None:
async with sio.session(sid) as session: async with sio.session(sid) as session:
session["room"] = room session["room"] = room
print(data["config"])
if room in clients: if room in clients:
old_state: State = clients[room] old_state: State = clients[room]
if data["secret"] == old_state.secret: if data["secret"] == old_state.secret:
@ -467,7 +466,7 @@ async def handle_sources(sid: str, data: dict[str, Any]) -> None:
@sio.on("config-chunk") @sio.on("config-chunk")
async def handle_config_chung(sid: str, data: dict[str, Any]) -> None: async def handle_config_chunk(sid: str, data: dict[str, Any]) -> None:
""" """
Handle the "config-chunk" message. Handle the "config-chunk" message.