about summary refs log tree commit diff stats
path: root/src/types
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2022-01-29 20:25:27 +0100
committerbptato <nincsnevem662@gmail.com>2022-01-29 20:26:34 +0100
commitfb017f273dab1d63764269ca02700316919522f4 (patch)
treede19963fc6a3e67d6d9d97833cd262bd2ecd6ed5 /src/types
parent5c19adf246650306eaee3605b7b9fc47a6ca73fb (diff)
downloadchawan-fb017f273dab1d63764269ca02700316919522f4.tar.gz
Implement forms
Note: for now, only input tags are supported. Also the implementation is
extremely hacky and needs refactoring...
But it works, I think.
Diffstat (limited to 'src/types')
-rw-r--r--src/types/url.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/url.nim b/src/types/url.nim
index c8c7085e..d4c8b91c 100644
--- a/src/types/url.nim
+++ b/src/types/url.nim
@@ -42,7 +42,7 @@ type
     port: Option[uint16]
     host: Option[Host]
     path*: UrlPath
-    query: Option[string]
+    query*: Option[string]
     fragment: Option[string]
     blob: Option[BlobUrlEntry]