Skip to content

Commit

Permalink
fix: handle null properly (ReVanced#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogadana authored Jul 7, 2022
1 parent 89a27df commit 482af78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/patcher/Patcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class Patcher(private val options: PatcherOptions) {
return PatcherResult(
dexFiles.map {
app.revanced.patcher.util.dex.DexFile(it.key, it.value.readAt(0))
}, metaInfo.doNotCompress.toList(), resourceFile
}, metaInfo.doNotCompress?.toList(), resourceFile
)
}

Expand Down

0 comments on commit 482af78

Please sign in to comment.