From d1666da9466c671c2bd4ab610a406955255f665d Mon Sep 17 00:00:00 2001 From: Felisp Date: Sat, 6 Jan 2024 06:22:26 +0100 Subject: [PATCH] Make it actually compile And start repl, because it's annoying when that doesnt happen --- src/rss_thread_watch/core.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rss_thread_watch/core.clj b/src/rss_thread_watch/core.clj index c87da0c..bdd7cab 100644 --- a/src/rss_thread_watch/core.clj +++ b/src/rss_thread_watch/core.clj @@ -75,7 +75,7 @@ "Entry point, starts webserver" [& args] ;; Todo: Think of a way to start repeated download for every catalog efficiently - (let [config (get-some-config args)]) + (let [config (get-some-config args)] (println args) (System/exit 0) (set-interval (fn [] @@ -83,7 +83,7 @@ (watcher/update-thread-cache! (:target config) (:starting-page config))) (* 1000 (:refresh-delay config))) (jetty/run-jetty (rp/wrap-params feed/http-handler) {:port (:port CONFIG-DEFAULT) - :join? true})) + :join? true}))) ;; Docs: https://github.com/ring-clojure/ring/wiki/Getting-Started (defn repl-main