Add ("") to parse-query-string

Otherwise a URL like https://example.com? will cause this to fail.
This commit is contained in:
Christopher Baines 2019-05-11 20:33:49 +01:00
parent a81a016380
commit bec838caf9
1 changed files with 1 additions and 0 deletions

View File

@ -46,6 +46,7 @@
(match lst
((key value . rest)
(cons (cons key value) (lp rest)))
(("") '())
(() '()))))
(define-immutable-record-type <invalid-query-parameter>