Fix very dumb bug

This is why you keep notes about hardcoded things when starting a project
This commit is contained in:
Felisp 2024-08-04 10:52:01 +02:00
parent 8a7981c27a
commit 69111968a6

View file

@ -113,5 +113,5 @@
time-to-update? (or (nil? board-atom) time-to-update? (or (nil? board-atom)
(> (System/currentTimeMillis) (+ refresh-rate time-downloaded)))] (> (System/currentTimeMillis) (+ refresh-rate time-downloaded)))]
(if time-to-update? (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)))) @(get @chod-threads-cache board))))