refactor: update to patcher 4.2.2

This commit is contained in:
Sculas 2022-09-08 17:01:28 +02:00
parent 43d332e877
commit 34444bda24
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ class CustomBrandingPatch : ResourcePatch() {
}
companion object : OptionsContainer() {
private var appName: String by option(
private var appName: String? by option(
PatchOption.StringOption(
key = "appName",
default = "YouTube ReVanced",

View File

@ -20,7 +20,7 @@ import org.w3c.dom.Element
@Version("0.0.1")
class ThemePatch : ResourcePatch() {
override fun execute(data: ResourceData): PatchResult {
val theme = Themes.of(theme) ?: return PatchResultError("Theme '$theme' not found.")
val theme = Themes.of(theme!!) ?: return PatchResultError("Theme '$theme' not found.")
data.xmlEditor["res/values/colors.xml"].use { editor ->
val resourcesNode = editor.file.getElementsByTagName("resources").item(0) as Element
@ -35,7 +35,7 @@ class ThemePatch : ResourcePatch() {
}
companion object : OptionsContainer() {
var theme: String by option(
var theme: String? by option(
PatchOption.StringListOption(
key = "theme",
default = null,