web UI added and refactoring done
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user