From 4fd5e8a156897ffc0f7a91b401f914178ea7db23 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Thu, 23 Aug 2018 20:15:29 -0700 Subject: [PATCH] at least fixing one of the duplication issues. --- src/clj/auto_ap/yodlee/import.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/auto_ap/yodlee/import.clj b/src/clj/auto_ap/yodlee/import.clj index 0350ab53..b36ed7d6 100644 --- a/src/clj/auto_ap/yodlee/import.clj +++ b/src/clj/auto_ap/yodlee/import.clj @@ -93,7 +93,7 @@ (defn manual-import [manual-transactions company-id] (let [transformed-transactions (->> manual-transactions (filter #(= "posted" (:status %))) - (group-by #(select-keys % [:date :original-description :amount])) + (group-by #(select-keys % [:date :description-original :amount])) (vals)