mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: handle null properly (#64)
This commit is contained in:
parent
89a27dfbe6
commit
482af78f2b
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class Patcher(private val options: PatcherOptions) {
|
||||||
return PatcherResult(
|
return PatcherResult(
|
||||||
dexFiles.map {
|
dexFiles.map {
|
||||||
app.revanced.patcher.util.dex.DexFile(it.key, it.value.readAt(0))
|
app.revanced.patcher.util.dex.DexFile(it.key, it.value.readAt(0))
|
||||||
}, metaInfo.doNotCompress.toList(), resourceFile
|
}, metaInfo.doNotCompress?.toList(), resourceFile
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue