diff options
author | Case Duckworth | 2020-06-08 00:42:16 -0500 |
---|---|---|
committer | Case Duckworth | 2020-06-08 00:42:16 -0500 |
commit | f97084b2870bed3a0722a7c1491466b3cfea6755 (patch) | |
tree | 80422687b8e1f89245f310334877a76bbb7f55b4 | |
parent | Fix regression with BOLLUX_URL not being set (diff) | |
download | bollux-f97084b2870bed3a0722a7c1491466b3cfea6755.tar.gz bollux-f97084b2870bed3a0722a7c1491466b3cfea6755.zip |
Escape URL queries
-rwxr-xr-x | bollux | 2 |
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 |