From a794ead21c3be82c5cb982fb14c1f60ab015ab72 Mon Sep 17 00:00:00 2001 From: jem Date: Fri, 15 May 2020 19:26:14 +0200 Subject: [PATCH] fix mastodon bug --- src/main/mastodon_bot/mastodon_api.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/mastodon_bot/mastodon_api.cljs b/src/main/mastodon_bot/mastodon_api.cljs index 21e7862..f1252bd 100755 --- a/src/main/mastodon_bot/mastodon_api.cljs +++ b/src/main/mastodon_bot/mastodon_api.cljs @@ -162,7 +162,7 @@ items any?] (doseq [{:keys [text media-links]} (->> items - (remove #((blocked-content? mastodon-config (:text %)))) + (remove #(blocked-content? mastodon-config (:text %))) (filter #(> (:created-at %) last-post-time)))] (if media-links (post-status-with-images mastodon-config text media-links)