From 69111968a6c49de1384416ff254f8f10e3561318 Mon Sep 17 00:00:00 2001 From: Felisp Date: Sun, 4 Aug 2024 10:52:01 +0200 Subject: [PATCH] Fix very dumb bug This is why you keep notes about hardcoded things when starting a project --- src/rss_thread_watch/watcher.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss_thread_watch/watcher.clj b/src/rss_thread_watch/watcher.clj index 6b03f27..d4844a5 100644 --- a/src/rss_thread_watch/watcher.clj +++ b/src/rss_thread_watch/watcher.clj @@ -113,5 +113,5 @@ time-to-update? (or (nil? board-atom) (> (System/currentTimeMillis) (+ refresh-rate time-downloaded)))] (if time-to-update? - (update-board-cache! (get-board-url "/mlp/" config) board (get-in config [:boards-enabled board :starting-page])) + (update-board-cache! (get-board-url board config) board (get-in config [:boards-enabled board :starting-page])) @(get @chod-threads-cache board))))