Fix
This commit is contained in:
parent
5fc69d4eb4
commit
74182b2974
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ public class LiveUpdatesFragment extends Fragment {
|
||||||
protected void onProgressUpdate(LocalIndexInfo... values) {
|
protected void onProgressUpdate(LocalIndexInfo... values) {
|
||||||
for (LocalIndexInfo localIndexInfo : values) {
|
for (LocalIndexInfo localIndexInfo : values) {
|
||||||
if (localIndexInfo.getType() == LocalIndexHelper.LocalIndexType.MAP_DATA
|
if (localIndexInfo.getType() == LocalIndexHelper.LocalIndexType.MAP_DATA
|
||||||
&& localIndexInfo.getFileName().toLowerCase().contains("world")) {
|
&& !(localIndexInfo.getFileName().toLowerCase().contains("world"))) {
|
||||||
adapter.add(localIndexInfo);
|
adapter.add(localIndexInfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue