summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2019-02-17 23:14:29 +0300
committerdefanor <defanor@uberspace.net>2019-02-17 23:14:29 +0300
commite198647ea5e12c6d80b74b615d382de9beb5d6b6 (patch)
tree8eaf8e5068a7cbb9dd01f3624719651c6844fcf3
parent075de8f8eaf6fd5eef1d8c18fe903199737fb581 (diff)
Fix default URIs for Gopher searches
Newer curl versions don't translate "?" into "%09", and it should be "%09".
-rw-r--r--Pancake/Configuration.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Pancake/Configuration.hs b/Pancake/Configuration.hs
index 9b0f83d..e73a234 100644
--- a/Pancake/Configuration.hs
+++ b/Pancake/Configuration.hs
@@ -106,8 +106,8 @@ instance Default Config where
, ("g", "https://m.gutenberg.org/ebooks/search.mobile/?query=")
, ("xiph", "http://dir.xiph.org/search?search=")
, ("cs", "http://citeseerx.ist.psu.edu/search?q=")
- , ("gp", "gopher://gopherpedia.com:70/7/lookup?")
- , ("vs", "gopher://gopher.floodgap.com/7/v2/vs?")
+ , ("gp", "gopher://gopherpedia.com:70/7/lookup%09")
+ , ("vs", "gopher://gopher.floodgap.com/7/v2/vs%09")
, ("wa", "web-archive:///?url=")]
, paginate = True
, historyDepth = 100