Fix put-string! and put-sexp!.
Thanks to Seth Alves for reporting the bug and providing a patch.
This commit is contained in:
@@ -187,7 +187,7 @@
|
|||||||
content-length: object-length no-xml: #t))
|
content-length: object-length no-xml: #t))
|
||||||
|
|
||||||
(define (put-string! bucket key string)
|
(define (put-string! bucket key string)
|
||||||
(put-object! bucket key (lambda () string) (string-length string) "text/plain"))
|
(put-object! bucket key (lambda () (display string)) (string-length string) "text/plain"))
|
||||||
|
|
||||||
(define (put-sexp! bucket key sexp)
|
(define (put-sexp! bucket key sexp)
|
||||||
(let-values (((res request-uri response) (put-string! bucket key (->string sexp))))
|
(let-values (((res request-uri response) (put-string! bucket key (->string sexp))))
|
||||||
|
|||||||
Reference in New Issue
Block a user