Skip to content

Commit a37304e

Browse files
committed
fix: this tiny thing has caused me the worst headache ever in my life
1 parent 8d96ec8 commit a37304e

File tree

1 file changed

+1
-1
lines changed
  • src/main/kotlin/app/revanced/cli

1 file changed

+1
-1
lines changed

src/main/kotlin/app/revanced/cli/Main.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Main {
7474
bar.reset().maxHint(dexFiles.size.toLong())
7575
.extraMessage = "Saving dex files"
7676
dexFiles.forEach { (dexName, dexData) ->
77-
Files.write(File(output, dexName).toPath(), dexData.buffer)
77+
Files.write(File(output, dexName).toPath(), dexData.data)
7878
bar.step()
7979
}
8080
bar.close()

0 commit comments

Comments
 (0)