"recent" track is now the last 5 minutes instead of 10 minutes.

This commit is contained in:
John Wiseman 2020-07-21 19:24:29 -07:00
parent 8869c130c1
commit d75e557ded
1 changed files with 1 additions and 1 deletions

View File

@ -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)))