Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 9296a13e authored by Rafael Tonholo's avatar Rafael Tonholo Committed by GitHub
Browse files

Merge pull request #9133 from shamim-emon/fix-issue-9113

Fix false ‘Incomplete input’ error on recipient field
parents 378e4545 084231f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ public abstract class TokenCompleteTextView<T> extends AppCompatAutoCompleteText
        Editable editable = getText();
        Range currentRange = getCurrentCandidateTokenRange();

        String result = TextUtils.substring(editable, currentRange.start, currentRange.end);
        String result = TextUtils.substring(editable, currentRange.start, currentRange.end).trim();
        Log.d(TAG, "Current completion text: " + result);
        return result;
    }