Fix emacs if syntax

This commit is contained in:
Alexander Matyasko 2024-08-07 00:58:27 +08:00
parent 6f94a076f7
commit 0e9e9648e6

View file

@ -424,7 +424,7 @@ Auto invokes setup steps on calling main entrypoint."
"Send multi-part form `BODY' of `CONTENT-TYPE' in request to khoj server.
Append 'TYPE-QUERY' as query parameter in request url.
Specify `BOUNDARY' used to separate files in request header."
(let ((url-request-method ((if force) "PUT" "PATCH"))
(let ((url-request-method (if force "PUT" "PATCH"))
(url-request-data body)
(url-request-extra-headers `(("content-type" . ,(format "multipart/form-data; boundary=%s" boundary))
("Authorization" . ,(format "Bearer %s" khoj-api-key)))))