Fix build broken by ec9618e

This commit is contained in:
LooKeR 2022-05-06 13:39:29 +05:30 committed by GitHub
parent efd9a17b73
commit 26ed7f0400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ import app.revanced.patcher.patch.implementation.metadata.PackageMetadata
import app.revanced.patcher.patch.implementation.metadata.PatchMetadata
import app.revanced.patcher.patch.implementation.misc.PatchResult
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
import com.sun.org.apache.xerces.internal.dom.ElementImpl
import org.w3c.dom.Element
private val compatiblePackages = listOf(
PackageMetadata(
@ -31,7 +31,7 @@ class FixLocaleConfigErrorPatch : ResourcePatch(
val applicationNode = editor
.file
.getElementsByTagName("application")
.item(0) as ElementImpl
.item(0) as Element
// by replacing the attributes name
val attribute = "android:localeConfig"
@ -43,4 +43,4 @@ class FixLocaleConfigErrorPatch : ResourcePatch(
return PatchResultSuccess()
}
}
}