web UI added and refactoring done

This commit is contained in:
Ayzen
2026-06-06 00:06:30 +03:00
parent 3c30a12d4a
commit af6005d68f
65 changed files with 3630 additions and 4720 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ def decode_result_collection(payload: bytes) -> ResultCollection:
"""Decode one result payload from stream."""
kind = cursor.read_u8()
name_size = cursor.read_u16()
name = cursor.read_bytes(name_size).decode("utf-8")
name = cursor.read_str(name_size)
if kind == 1:
point_count = cursor.read_u32()