diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-09 05:02:32 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-09 05:02:32 +0900 |
commit | fc87bd109afd0faeb8d83a9875ab17678c49ef0e (patch) | |
tree | 3bbbd4a4f8130c8a1e05514e398123e35e95d747 /qkbox | |
parent | 51c1074f6c58a8af19d7cc95c82cb0bfb93b89a1 (diff) |
qkbox: toot: Fix /api/v1/timelines/home procedure.
Diffstat (limited to 'qkbox')
-rw-r--r-- | qkbox/toot.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qkbox/toot.scm b/qkbox/toot.scm index 1de9fb4..de5dd19 100644 --- a/qkbox/toot.scm +++ b/qkbox/toot.scm @@ -196,9 +196,9 @@ 'GET "/api/v1/timelines/home" #:json - `(,@(if max-id `((max-id . ,max-id)) '()) - ,@(if since-id `((since-id . ,since-id)) '()) - ,@(if min-id `((min-id . ,min-id)) '()) + `(,@(if max-id `((max_id . ,max-id)) '()) + ,@(if since-id `((since_id . ,since-id)) '()) + ,@(if min-id `((min_id . ,min-id)) '()) ,@(if limit `((limit . ,limit)) '()) ,@(if local? `((local . ,local?)) '())) #:authorization? #t)) |