From 65a20884832c57a79aa521cb249f0dfe14402396 Mon Sep 17 00:00:00 2001 From: Rifat Azad Date: Mon, 23 Dec 2024 07:38:48 +0600 Subject: [PATCH] manager: fixed typo --- manager/app/src/main/java/com/rifsxd/ksunext/ui/util/KsuCli.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/app/src/main/java/com/rifsxd/ksunext/ui/util/KsuCli.kt b/manager/app/src/main/java/com/rifsxd/ksunext/ui/util/KsuCli.kt index 7bc4d90c..2bf760c5 100644 --- a/manager/app/src/main/java/com/rifsxd/ksunext/ui/util/KsuCli.kt +++ b/manager/app/src/main/java/com/rifsxd/ksunext/ui/util/KsuCli.kt @@ -444,7 +444,7 @@ fun getAppProfileTemplate(id: String): String { fun setAppProfileTemplate(id: String, template: String): Boolean { val shell = getRootShell() val escapedTemplate = template.replace("\"", "\\\"") - val cmd = """${getKsuDaemonPath()} profile set-template "$id" "$escapedTemplate'""" + val cmd = """${getKsuDaemonPath()} profile set-template "$id" "$escapedTemplate""""" return shell.newJob().add(cmd) .to(ArrayList(), null).exec().isSuccess }