diff options
Diffstat (limited to 'java/src')
| -rw-r--r-- | java/src/com/android/inputmethod/dictionarypack/DictionaryProvider.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/dictionarypack/DictionaryProvider.java b/java/src/com/android/inputmethod/dictionarypack/DictionaryProvider.java index 308b123e1..471fca436 100644 --- a/java/src/com/android/inputmethod/dictionarypack/DictionaryProvider.java +++ b/java/src/com/android/inputmethod/dictionarypack/DictionaryProvider.java @@ -403,7 +403,8 @@ public final class DictionaryProvider extends ContentProvider { if (!f.isFile()) { continue; } - } else if (MetadataDbHelper.STATUS_AVAILABLE == wordListStatus) { + } else if (MetadataDbHelper.STATUS_AVAILABLE == wordListStatus + || MetadataDbHelper.STATUS_DELETING == wordListStatus) { // The locale is the id for the main dictionary. UpdateHandler.installIfNeverRequested(context, clientId, wordListId); continue; |
