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.