mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: Merge integrations when required
Previous to this commit integrations were merged when not required.
This commit is contained in:
parent
3896b30738
commit
06c2b76f11
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class Patcher(
|
||||||
|
|
||||||
// Determine, if merging integrations is required.
|
// Determine, if merging integrations is required.
|
||||||
for (patch in patches)
|
for (patch in patches)
|
||||||
if (!patch.anyRecursively { it.requiresIntegrations }) {
|
if (patch.anyRecursively { it.requiresIntegrations }) {
|
||||||
context.bytecodeContext.integrations.merge = true
|
context.bytecodeContext.integrations.merge = true
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue