Fix modified date
This commit is contained in:
parent
43ed8fcf64
commit
543a909b8a
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ public class DownloadFileHelper {
|
||||||
while ((entry = zipIn.getNextEntry()) != null) {
|
while ((entry = zipIn.getNextEntry()) != null) {
|
||||||
int size = (int)entry.getSize();
|
int size = (int)entry.getSize();
|
||||||
progress.startTask(ctx.getString(R.string.unzipping_file), size);
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
File fs;
|
File fs;
|
||||||
|
|
Loading…
Reference in a new issue