From f72f3ebd0e4f8fa7a875b6de6ac00811e23ee7ec Mon Sep 17 00:00:00 2001 From: Cristiano Nunes Date: Wed, 22 Jan 2025 17:31:09 -0300 Subject: [PATCH] Bugfix --- Archive/Extract Here | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Archive/Extract Here b/Archive/Extract Here index fa942b23..20a7ae9b 100755 --- a/Archive/Extract Here +++ b/Archive/Extract Here @@ -408,7 +408,7 @@ _run_command() { std_output=$(unrar x -p"null" -- "$input_file" 2>&1) exit_code=$? - if ((exit_code != 0)) && grep --quiet --ignore-case "incorrect password for" <<<"$std_output"; then + if ((exit_code != 0)) && grep --quiet --ignore-case "password" <<<"$std_output"; then local password="" __temp_dir_pop && __temp_dir_remove password=$(__get_password) || return 1