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

Commit 19509641 authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Don't assume a word has been added to the user dict"

parents 97bde437 8e4b3bbf
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -165,17 +165,12 @@ public class UserDictionary extends ExpandableDictionary {
        // Safeguard against adding long words. Can cause stack overflow.
        if (word.length() >= getMaxWordLength()) return;

        super.addWord(word, frequency);

        // TODO: Add an argument to the intent to specify the frequency.
        Intent intent = new Intent(ACTION_USER_DICTIONARY_INSERT);
        intent.putExtra(Words.WORD, word);
        intent.putExtra(Words.LOCALE, mLocale);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        getContext().startActivity(intent);

        // In case the above does a synchronous callback of the change observer
        setRequiresReload(false);
    }

    @Override