diff --git a/src/main/dda/masto_embed/account_mode.cljs b/src/main/dda/masto_embed/account_mode.cljs index 016b0cd..410fdfc 100644 --- a/src/main/dda/masto_embed/account_mode.cljs +++ b/src/main/dda/masto_embed/account_mode.cljs @@ -76,3 +76,17 @@ (masto->html) (render-html) (b/render-to-document))))) + +; Execute in browser repl to get some infos about incoming data +(defn account-mode-debug [host-url account-name] + (go + (let [account-id ( + (
edn)] + (->> statuus + (filter #(= nil (:reblog %))) + (filter #(= nil (:in_reply_to_account_id %))) + (take 4) + (infra/debug) + ))))