From fcbb023a5ea800ef13f6a627b8fb3b5c0b2e43b3 Mon Sep 17 00:00:00 2001 From: John Wiseman Date: Sat, 11 Apr 2020 14:06:53 -0700 Subject: [PATCH] FIxed altitude filtering. (I forgot to store altitude in history, duh.) --- src/main/lemondronor/circlebot.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/lemondronor/circlebot.cljs b/src/main/lemondronor/circlebot.cljs index eb0d565..f86f570 100644 --- a/src/main/lemondronor/circlebot.cljs +++ b/src/main/lemondronor/circlebot.cljs @@ -79,6 +79,7 @@ (let [icao (:icao ac) new-history-entry {:lat (:lat ac) :lon (:lon ac) + :alt (:alt ac) :time (:postime ac)}] (if (contains? db icao) (let [old-record (db icao)