You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 3, 2023. It is now read-only.
message_handler does not retrieve the entire length of messages sent by users if the message includes : and will terminate one character before : is encountered.
Examples:
User's message
message_handler receives
abc abc
abc abc
Items : Sword
Items
tt:t
t
t:t
The culprit seems to be parts = line.split(":") in wrapper.py
message_handler does not retrieve the entire length of messages sent by users if the message includes
:and will terminate one character before:is encountered.Examples:
The culprit seems to be
parts = line.split(":")in wrapper.py