diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-10 10:29:30 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-10 10:29:30 +0900 |
commit | df78726ef4e4aed0e7caa3aa8d5a0439da0eee4a (patch) | |
tree | 5bed652ddda40fb4fa39f2bc905507563c862702 /qkbox | |
parent | 62ecf547a01f32c2fa155ac7b0c8a48732ed5511 (diff) |
qkbox: toot: Fix indents.
Diffstat (limited to 'qkbox')
-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)))) |