Skip to content

Commit 06c2b76

Browse files
committed
fix: Merge integrations when required
Previous to this commit integrations were merged when not required.
1 parent 3896b30 commit 06c2b76

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

revanced-patcher/src/main/kotlin/app/revanced/patcher/Patcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Patcher(
104104

105105
// Determine, if merging integrations is required.
106106
for (patch in patches)
107-
if (!patch.anyRecursively { it.requiresIntegrations }) {
107+
if (patch.anyRecursively { it.requiresIntegrations }) {
108108
context.bytecodeContext.integrations.merge = true
109109
break
110110
}

0 commit comments

Comments
 (0)