We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94a265a commit 809984cCopy full SHA for 809984c
app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt
@@ -152,7 +152,11 @@ class DecompressActivity : SimpleActivity() {
152
val zipInputStream = ZipInputStream(BufferedInputStream(inputStream))
153
var zipEntry: ZipEntry?
154
while (true) {
155
- zipEntry = zipInputStream.nextEntry
+ try {
156
+ zipEntry = zipInputStream.nextEntry
157
+ } catch (ignored: Exception) {
158
+ break
159
+ }
160
161
if (zipEntry == null) {
162
break
0 commit comments