From 98ff0c34fa71c3b3ecd96157d45a30ee2b8979c6 Mon Sep 17 00:00:00 2001 From: decipher <84389932+decipher3114@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:17:55 +0530 Subject: [PATCH] fix: List if patch option is required (#346) --- src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt index 4de799d..a2220e6 100644 --- a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt @@ -89,6 +89,7 @@ internal object ListPatchesCommand : Runnable { buildString { appendLine("Title: $title") description?.let { appendLine("Description: $it") } + appendLine("Required: $required") default?.let { appendLine("Key: $key") append("Default: $it")