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