test bota #77

Closed
Raykov-MS wants to merge 373 commits from test into main
Showing only changes of commit d95465abe4 - Show all commits

View File

@ -608,7 +608,7 @@ async def login(websocket: WebSocket, **kwargs) -> int:
def resolve_cell_key(event_data: dict) -> dict | None:
data = event_data.get("data")
if not data:
if not data or "line_id" not in data or "column" not in data:
return None
return {
"line_id": data["line_id"],