Open axelfontaine opened 8 years ago
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.
"i".toUpperCase()
Ì
I
str.toUpperCase()
str.toUpperCase(Locale.ROOT)
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.