about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-06-08 00:42:16 -0500
committerCase Duckworth2020-06-08 00:42:16 -0500
commitf97084b2870bed3a0722a7c1491466b3cfea6755 (patch)
tree80422687b8e1f89245f310334877a76bbb7f55b4
parentFix regression with BOLLUX_URL not being set (diff)
downloadbollux-f97084b2870bed3a0722a7c1491466b3cfea6755.tar.gz
bollux-f97084b2870bed3a0722a7c1491466b3cfea6755.zip
Escape URL queries
-rwxr-xr-xbollux2
1 files changed, 1 insertions, 1 deletions
diff --git a/bollux b/bollux index c1319b2..2e0b9a1 100755 --- a/bollux +++ b/bollux
@@ -394,7 +394,7 @@ gemini_response() { # gemini_response URL
394 10) run prompt "$meta" ;; 394 10) run prompt "$meta" ;;
395 11) run prompt "$meta" -s ;; # password input 395 11) run prompt "$meta" -s ;; # password input
396 esac 396 esac
397 run blastoff "?$REPLY" 397 run blastoff "?$(urlencode "$REPLY")"
398 ;; 398 ;;
399 2*) # OK 399 2*) # OK
400 REDIRECTS=0 400 REDIRECTS=0