summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--url.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/url.c b/url.c
index 6bd34b7..3a0a5ad 100644
--- a/url.c
+++ b/url.c
@@ -109,6 +109,9 @@ string cUrlEncode::doUrlSaveDecode(string input) {
case 0x25: // '%'
res += "%";
break;
+ case 0x26: // '&'
+ res += "&";
+ break;
case 0x2f: // '/'
res += "#2F";
break;