From 04c7f0d3cf71532086fdc25a816ff5df66480f5f Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Thu, 21 Jul 2022 16:48:44 -0700 Subject: [PATCH] fixing characters that need cleanup. --- src/clj/auto_ap/graphql/utils.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/auto_ap/graphql/utils.clj b/src/clj/auto_ap/graphql/utils.clj index 6a5c6616..d28b4a8f 100644 --- a/src/clj/auto_ap/graphql/utils.clj +++ b/src/clj/auto_ap/graphql/utils.clj @@ -128,7 +128,7 @@ (if (str/includes? q "&") (str "\"" q "\"~0.8") (let [parts (-> q - (str/replace #"[\[\]\+\*]" "") + (str/replace #"[\[\]\+\*\-]" "") (str/split #"\s+")) exacts (butlast parts) partial (last parts)]