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 12, 2024. It is now read-only.
Currently, strings are converted to BoundedString by simply using .into(). This is an unchecked conversion and will truncate the string to fit in the length - which is currently 63.
Steps to Reproduce
Expected Behavior
The conversions should be checked and an explicit error must be returned if the string is invalid (longer than 63). Having it silently fail without warnings makes a good foot gun :)