diff options
author | Case Duckworth | 2020-06-07 16:51:48 -0500 |
---|---|---|
committer | Case Duckworth | 2020-06-07 16:51:48 -0500 |
commit | a4f561b1498894ad07c8bc6604634b27cf72db4c (patch) | |
tree | 3eb22a37d73cb8185e08440ecba633d2cbed30a4 | |
parent | Update README (diff) | |
download | bollux-a4f561b1498894ad07c8bc6604634b27cf72db4c.tar.gz bollux-a4f561b1498894ad07c8bc6604634b27cf72db4c.zip |
Support status code 11
-rwxr-xr-x | bollux | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bollux b/bollux index 9b8d5fa..022a520 100755 --- a/bollux +++ b/bollux | |||
@@ -358,7 +358,10 @@ gemini_response() { | |||
358 | case "$code" in | 358 | case "$code" in |
359 | 1*) # input | 359 | 1*) # input |
360 | REDIRECTS=0 | 360 | REDIRECTS=0 |
361 | run prompt "$meta" | 361 | case "$code" in |
362 | 10) run prompt "$meta" ;; | ||
363 | 11) run prompt "$meta" -s ;; # password input | ||
364 | esac | ||
362 | run blastoff "?$REPLY" | 365 | run blastoff "?$REPLY" |
363 | ;; | 366 | ;; |
364 | 2*) # OK | 367 | 2*) # OK |