Fix unzip extension for obf files
This commit is contained in:
parent
fc130d4001
commit
aa7da2e211
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ public class DownloadActivityType {
|
|||
if (NORMAL_FILE == this) {
|
||||
if (indexItem.fileName.endsWith(IndexConstants.BINARY_MAP_INDEX_EXT_ZIP)) {
|
||||
return BINARY_MAP_INDEX_EXT;
|
||||
} else if (indexItem.fileName.endsWith(IndexConstants.BINARY_MAP_INDEX_EXT_ZIP)) {
|
||||
} else if (indexItem.fileName.endsWith(IndexConstants.BINARY_MAP_INDEX_EXT)) {
|
||||
return BINARY_MAP_INDEX_EXT;
|
||||
} else if (indexItem.fileName.endsWith(IndexConstants.EXTRA_ZIP_EXT)) {
|
||||
return IndexConstants.EXTRA_EXT;
|
||||
|
|
Loading…
Reference in a new issue