From d75e557ded77858ac05074dd5306bf409e9f4805 Mon Sep 17 00:00:00 2001 From: John Wiseman Date: Tue, 21 Jul 2020 19:24:29 -0700 Subject: [PATCH] "recent" track is now the last 5 minutes instead of 10 minutes. --- src/main/lemondronor/advisorycircular.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/lemondronor/advisorycircular.cljs b/src/main/lemondronor/advisorycircular.cljs index 5169f65..3d0ba24 100644 --- a/src/main/lemondronor/advisorycircular.cljs +++ b/src/main/lemondronor/advisorycircular.cljs @@ -534,7 +534,7 @@ (defn split-history [history] (let [most-recent-time (:time (last history)) - cutoff-time (- most-recent-time (* 10 60 1000))] + cutoff-time (- most-recent-time (* 5 60 1000))] (split-with #(< (:time %) cutoff-time) history)))