diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-15 05:50:39 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-15 05:50:39 +0900 |
commit | d561025b6c686d279df491d2e898c827d8c180ab (patch) | |
tree | 0b59c3206e60dde893129c6e0997834fe0c54af1 /qkbox | |
parent | f16c17e7be7c25e3010dba79ccdbad8a1402e425 (diff) |
qkbox: toot: Fix identifier name.
Diffstat (limited to 'qkbox')
-rw-r--r-- | qkbox/toot.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qkbox/toot.scm b/qkbox/toot.scm index 83c744e..f2602ea 100644 --- a/qkbox/toot.scm +++ b/qkbox/toot.scm @@ -566,7 +566,7 @@ (define (unfavourite id) (define-values (res body) - (get-/api/v1/statuses/:id/unfavourite id)) + (post-/api/v1/statuses/:id/unfavourite id)) (case (response-code res) ((200) #t) (else |