Fix empty regions issue

This commit is contained in:
Alexey Kulish 2015-10-26 22:19:31 +03:00
parent 5894ab3137
commit 2ebc2fb9d1

View file

@ -294,13 +294,14 @@ public class DownloadIndexesThread {
@Override
protected DownloadResources doInBackground(Void... params) {
DownloadResources result = new DownloadResources(app);
DownloadResources result = null;
DownloadOsmandIndexesHelper.IndexFileList indexFileList = DownloadOsmandIndexesHelper.getIndexesList(ctx);
if (indexFileList != null) {
try {
while (app.isApplicationInitializing()) {
Thread.sleep(200);
}
result = new DownloadResources(app);
result.isDownloadedFromInternet = indexFileList.isDownloadedFromInternet();
result.mapVersionIsIncreased = indexFileList.isIncreasedMapVersion();
app.getSettings().LAST_CHECKED_UPDATES.set(System.currentTimeMillis());
@ -308,7 +309,7 @@ public class DownloadIndexesThread {
} catch (Exception e) {
}
}
return result;
return result == null ? new DownloadResources(app) : result;
}
protected void onPostExecute(DownloadResources result) {