Open kikuomax opened 1 year ago
https://github.com/codemonger-io/mumble/blob/733677db7cdef1df21d4e92952bb45124ec6e780/cdk/lambda/libmumble/src/libmumble/object_table.py#L466
Atmark (@) does not represent the lowest ID because digit characters have smaller ASCII (0x30-0x39) code than @ (0x40). It should not be a problem in this case, but we'd better change it; e.g., to !.
@
0x30
0x39
0x40
!
https://github.com/codemonger-io/mumble/blob/733677db7cdef1df21d4e92952bb45124ec6e780/cdk/lambda/libmumble/src/libmumble/object_table.py#L466
Atmark (
@
) does not represent the lowest ID because digit characters have smaller ASCII (0x30
-0x39
) code than@
(0x40
). It should not be a problem in this case, but we'd better change it; e.g., to!
.