From 116389d6a45209340dee50d8a6d69181a11ec17a Mon Sep 17 00:00:00 2001 From: Gardouille Date: Thu, 3 Dec 2020 20:03:59 +0100 Subject: [PATCH] Ensure to replace whitespaces with "%20" in URL --- qb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qb b/qb index 7f040af..c723303 100755 --- a/qb +++ b/qb @@ -307,6 +307,8 @@ Search aborded or can't find matching bookmark." # }}} open_in_qutebrowser() { # {{{ + url=$(printf "%s" "${url}" | sed 's/ /%20/g') + debug_message "open_in_qutebrowser − \ Try to open ${RED}${url}${COLOR_DEBUG}"