Skip to content

Commit

Permalink
added quotes to modified errors
Browse files Browse the repository at this point in the history
  • Loading branch information
plumstyle committed Aug 29, 2018
1 parent 964c367 commit db66bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loggings/loggingtool.clj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
(if (nil? (first errs))
(clojure.string/join "<br />&nbsp;" coll)
(recur (rest errs)
(conj coll (first errs))))))))
(conj coll (str "\"" (first errs) "\""))))))))

;;get original error msg by key
(defn- get-original-error-by-key
Expand Down

0 comments on commit db66bae

Please sign in to comment.