Browse Source

fix(frontend-search): URL-encode search parameters (#10910)

Fixes #10884
Closes #10910
jackh 2 years ago
parent
commit
d7fc9b87f9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      plugins/frontend-search/frontend-search.plugin.zsh

+ 1 - 2
plugins/frontend-search/frontend-search.plugin.zsh

@@ -103,8 +103,7 @@ function frontend() {
 
 
   # build search url:
   # build search url:
   # join arguments passed with '%20', then append to search context URL
   # join arguments passed with '%20', then append to search context URL
-  # TODO substitute for proper urlencode method
-  url="${urls[$1]}${(j:%20:)@[2,-1]}"
+  url="${urls[$1]}$(omz_urlencode -P ${@[2,-1]})"
 
 
   echo "Opening $url ..."
   echo "Opening $url ..."