From 4114318ded796e7d790a39e2ccf378891b582a68 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 10 May 2024 11:25:17 +0200 Subject: [PATCH] Filter replies from account_mode --- src/main/dda/masto_embed/account_mode.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/dda/masto_embed/account_mode.cljs b/src/main/dda/masto_embed/account_mode.cljs index 8938618..8474720 100644 --- a/src/main/dda/masto_embed/account_mode.cljs +++ b/src/main/dda/masto_embed/account_mode.cljs @@ -71,6 +71,7 @@ api/mastojs->edn)] (->> statuus (filter #(= nil (:reblog %))) + (filter #(= nil (:in_reply_to_account_id %))) (take 4) (masto->html) (render-html)