Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
cfgnunes committed Jan 22, 2025
1 parent 8589a91 commit f72f3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Archive/Extract Here
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f72f3eb

Please sign in to comment.