From df78726ef4e4aed0e7caa3aa8d5a0439da0eee4a Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Fri, 10 Jul 2020 10:29:30 +0900 Subject: qkbox: toot: Fix indents. --- qkbox/toot.scm | 12 ++++++------ 1 file 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)))) -- cgit v1.2.3