mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 6c034901: Fix an NPE
* commit '6c0349012eb0edad56b6b89defebb922bbddbb34': Fix an NPE
This commit is contained in:
commit
c4f66d3233
@ -2299,7 +2299,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||
final InputConnection ic = getCurrentInputConnection();
|
||||
if (null != ic) {
|
||||
final CharSequence lastChar = ic.getTextBeforeCursor(1, 0);
|
||||
if (lastChar.length() > 0 && Character.isHighSurrogate(lastChar.charAt(0))) {
|
||||
if (!TextUtils.isEmpty(lastChar) && Character.isHighSurrogate(lastChar.charAt(0))) {
|
||||
ic.deleteSurroundingText(1, 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user