Fix Resources zip filename on Android downloader.

This commit is contained in:
valfieri
2019-09-13 19:48:21 +02:00
parent 54e4d881a7
commit dcc7e23b84

View File

@@ -1311,7 +1311,7 @@ public class ImgDownloader {
InputStream stream = null;
File filePath = null;
try {
zipFile = new ZipFile(basePath + File.separator + listOfFiles[0].getName());
zipFile = new ZipFile(basePath + File.separator + parent.RES_FILENAME);
Enumeration<? extends ZipEntry> e = zipFile.entries();
while (e.hasMoreElements()) {
ZipEntry entry = e.nextElement();