diff options
Diffstat (limited to 'qkbox/toot.scm')
-rw-r--r-- | qkbox/toot.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qkbox/toot.scm b/qkbox/toot.scm index db6e6e4..e774d8b 100644 --- a/qkbox/toot.scm +++ b/qkbox/toot.scm @@ -264,11 +264,11 @@ (define*-public (timeline #:key max-id since-id min-id limit local?) (receive (res body) - (/api/v1/timelines/home #:max-id max-id - #:since-id since-id - #:min-id min-id - #:limit limit - #:local? local?) + (/api/v1/timelines/home #:max-id max-id + #:since-id since-id + #:min-id min-id + #:limit limit + #:local? local?) (case (response-code res) ((200) (map make-status (vector->list body))) @@ -376,7 +376,7 @@ '((content-type application/json)) '()) #:authorization? authorization?) - (if (= 200 (response-code res)) + (if (= 200 (response-code res)) (values res (json-string->scm (utf8->string body))) (values res body)))) |