From 543a909b8a5db8f8952e22ff50cee16de11c0501 Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Thu, 19 Jan 2012 00:57:00 +0100 Subject: [PATCH] Fix modified date --- OsmAnd/src/net/osmand/plus/activities/DownloadFileHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/activities/DownloadFileHelper.java b/OsmAnd/src/net/osmand/plus/activities/DownloadFileHelper.java index 611136e6f4..7172d59d5b 100644 --- a/OsmAnd/src/net/osmand/plus/activities/DownloadFileHelper.java +++ b/OsmAnd/src/net/osmand/plus/activities/DownloadFileHelper.java @@ -160,7 +160,7 @@ public class DownloadFileHelper { while ((entry = zipIn.getNextEntry()) != null) { int size = (int)entry.getSize(); progress.startTask(ctx.getString(R.string.unzipping_file), size); - if(entry.isDirectory() || entry.getName().endsWith(IndexConstants.GEN_LOG_INDEX_EXT)){ + if(entry.isDirectory() || entry.getName().endsWith(IndexConstants.GEN_LOG_EXT)){ continue; } File fs;