From 2cc3b262d154482fd39f29ea68b9d2f08ff43971 Mon Sep 17 00:00:00 2001 From: arne Date: Sat, 6 Jan 2024 11:26:54 +0100 Subject: [PATCH] Undo "public" visibility, as it is set by botsin.space This reverts commit aef6e1f4c0364789dc4cf08bde688a1db198e6b6. --- src/computersandblues/frantisek_kafka/samsa.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/computersandblues/frantisek_kafka/samsa.clj b/src/computersandblues/frantisek_kafka/samsa.clj index 9a263db..8f8b1ff 100644 --- a/src/computersandblues/frantisek_kafka/samsa.clj +++ b/src/computersandblues/frantisek_kafka/samsa.clj @@ -59,8 +59,7 @@ (defn send-toot! [text] (when (environment-setup?) (http/post (str (:mastodon-instance env) "/api/v1/statuses") - {:form-params {:status text - :visiblity "public"} + {:form-params {:status text} :headers {"Authorization" (str "Bearer " (:access-token env))}})) (log/info text))