From d0a08a5e3ffc7615eba7bd4663e0a8b22a13accc Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Thu, 25 Sep 2025 20:53:15 +0200 Subject: [PATCH] fix bluesky proc in api --- src/micro_blog/api.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/micro_blog/api.clj b/src/micro_blog/api.clj index b200cb6..f28b078 100644 --- a/src/micro_blog/api.clj +++ b/src/micro_blog/api.clj @@ -17,7 +17,7 @@ (defn blue-sky-proc-handler [_request] (let [msg "Procing BlueSky Scrape"] (tel/log! :info msg) - (micro-blog.mastodon/run) + (micro-blog.blue-sky/run) {:status 200 :body msg}))