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
In places like Turkey "i".toUpperCase() results in Ì instead of I, which causes this library to break in a number of places. Changing all str.toUpperCase() calls to str.toUpperCase(Locale.ROOT) fixes the issue.
The text was updated successfully, but these errors were encountered:
In places like Turkey
"i".toUpperCase()
results inÌ
instead ofI
, which causes this library to break in a number of places. Changing allstr.toUpperCase()
calls tostr.toUpperCase(Locale.ROOT)
fixes the issue.The text was updated successfully, but these errors were encountered: