Skip to content

Commit

Permalink
fix: decode in correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Aug 14, 2023
1 parent 2a8cc28 commit 8fb2f2d
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 @@ -208,8 +208,8 @@ class Patcher(private val options: PatcherOptions) {

val outDir = options.recreateResourceCacheDirectory()

resourcesDecoder.decodeManifest(outDir)
resourcesDecoder.decodeResources(outDir)
resourcesDecoder.decodeManifest(outDir)

apkDecoder.recordUncompressedFiles(resourcesDecoder.resFileMapping)

Expand Down

0 comments on commit 8fb2f2d

Please sign in to comment.