From 9e603728e6f6185b68bdc433b7599441b3f327d4 Mon Sep 17 00:00:00 2001 From: John Wiseman Date: Fri, 3 Jul 2020 20:11:04 -0700 Subject: [PATCH] "Recent" history is now 10 minutes instead of 6. --- 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 2b24430..a9ccfbe 100644 --- a/src/main/lemondronor/advisorycircular.cljs +++ b/src/main/lemondronor/advisorycircular.cljs @@ -530,7 +530,7 @@ (defn split-history [history] (let [most-recent-time (:time (last history)) - cutoff-time (- most-recent-time (* 6 60 1000))] + cutoff-time (- most-recent-time (* 10 60 1000))] (split-with #(< (:time %) cutoff-time) history)))