refactor: move integrations to correct package

This commit is contained in:
inotia00 2024-01-18 21:51:49 +09:00
parent afdc1af509
commit b441ec7d55

View File

@ -107,7 +107,7 @@ object SeekbarColorPatch : BytecodePatch(
val scaleNode = progressNode.getElementsByTagName("scale").item(0) as Element
val shapeNode = scaleNode.getElementsByTagName("shape").item(0) as Element
val replacementNode = it.file.createElement(
"app.revanced.integrations.patches.utils.ProgressBarDrawable"
"app.revanced.integrations.youtube.patches.utils.ProgressBarDrawable"
)
scaleNode.replaceChild(replacementNode, shapeNode)
}