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
Changes to useSTD3ASCIIRules handling in a recent commit broke the logic.
Reason - used regexp will only match 3-character strings, that start with letter, continue with digit, and end with hyphen, which can never happen. It should probably be changed to something like this: /^([a-z]|[0-9]|-)$/u
The text was updated successfully, but these errors were encountered:
Changes to
useSTD3ASCIIRules
handling in a recent commit broke the logic.Reason - used regexp will only match 3-character strings, that start with letter, continue with digit, and end with hyphen, which can never happen. It should probably be changed to something like this:
/^([a-z]|[0-9]|-)$/u
The text was updated successfully, but these errors were encountered: