diff options
-rwxr-xr-x | guix-web | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,8 +70,8 @@ (define (render-json json) (list '((content-type . (application/json))) - (with-output-to-string - (cut scm->json json)))) + (lambda (port) + (scm->json json port)))) (define (request-path-components request) (split-and-decode-uri-path (uri-path (request-uri request)))) |