Skip to content

Commit

Permalink
Merge pull request #26 from cmatheson/master
Browse files Browse the repository at this point in the history
Always use comma-join
  • Loading branch information
Raynes committed Jul 28, 2013
2 parents acf5552 + 72dc2b3 commit 66e79f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/irclj/core.clj
Expand Up @@ -52,7 +52,7 @@
(let [[channels opts] (split-with (complement keyword?) channels-and-opts)
opts (apply hash-map opts)]
(connection/write-irc-line irc "PART"
(string/join "," channels)
(comma-join channels)
(when-let [message (:message opts)]
(connection/end message)))))

Expand Down

0 comments on commit 66e79f9

Please sign in to comment.