Lagrange [release]

Gopher: Don't re-encode % in URL

e006288afad7261e5d707e45ce435d842241d8fb
diff --git a/src/gopher.c b/src/gopher.c
index fa8495d7..cb1079b9 100644
--- a/src/gopher.c
+++ b/src/gopher.c
@@ -115,7 +115,7 @@ static iBool convertSource_Gopher_(iGopher *d) {
                                   cstr_Rangecc(port),
                                   lineType,
                                   cstrCollect_String(
-                                      urlEncodeExclude_String(collectNewRange_String(path), "/")),
+                                      urlEncodeExclude_String(collectNewRange_String(path), "/%")),
                                   cstr_Rangecc(text));
                     appendData_Block(d->output, constBegin_String(buf), size_String(buf));
                     iEndCollect();