diff options
Diffstat (limited to 'src/buffer')
-rw-r--r-- | src/buffer/buffer.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer/buffer.nim b/src/buffer/buffer.nim index 85034d9e..2f3c5d76 100644 --- a/src/buffer/buffer.nim +++ b/src/buffer/buffer.nim @@ -838,7 +838,7 @@ func submitForm(form: HTMLFormElement, submitter: Element): Option[Request] = of FORM_ENCODING_TYPE_TEXT_PLAIN: body = serializePlainTextFormData(entrylist).some mimetype = $enctype - return newRequest(parsedaction, httpmethod, @{"Content-Type": mimetype}, body, multipart).some + return newRequest(parsedaction, httpmethod, @{"Content-Type": mimetype}, body).some #TODO multipart template getActionUrl() = return newRequest(parsedaction).some |