Skip to content

Commit

Permalink
Merge pull request #37 from ptaoussanis/feature/fix_threading_macro
Browse files Browse the repository at this point in the history
Fix Threading Macro Issue (@sritchie)
  • Loading branch information
ptaoussanis committed May 1, 2014
2 parents 3a646fb + 2519643 commit 8017fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/taoensso/sente.cljx
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,10 @@
(flush-buffer! type)))

(doseq [hk-ch (get-in @conns_ [:ws uid])] (http-kit/close hk-ch))
(doseq [hk-ch (-> (get-in @conns_ [:ajax uid])
(vals)
(map first)
(remove nil?))] (http-kit/close hk-ch)))
(doseq [hk-ch (->> (get-in @conns_ [:ajax uid])
(vals)
(map first)
(remove nil?))] (http-kit/close hk-ch)))

(do
;; Buffer event
Expand Down

0 comments on commit 8017fc0

Please sign in to comment.