mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Fix an NPE."
This commit is contained in:
commit
8678062853
@ -286,7 +286,8 @@ final public class BinaryDictionaryGetter {
|
||||
}
|
||||
if (!dictPackSettings.isWordListActive(wordListId)) continue;
|
||||
if (canUse) {
|
||||
fileList.add(AssetFileAddress.makeFromFileName(f.getPath()));
|
||||
final AssetFileAddress afa = AssetFileAddress.makeFromFileName(f.getPath());
|
||||
if (null != afa) fileList.add(afa);
|
||||
} else {
|
||||
Log.e(TAG, "Found a cached dictionary file but cannot read or use it");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user