Skip to content

Commit

Permalink
Bugfix: Readded removed space in string from incorrect refactoring in…
Browse files Browse the repository at this point in the history
… untested method.
  • Loading branch information
Havvy committed Jan 16, 2015
1 parent c077ca4 commit bc2353d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/output-socket.sjs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ var OutputSocket = function (socket, messageHandler, nickname, logger) {

userhost: function recur (users) {
if (typeof users === 'string') {
rawf("USERHOST:%s", users);
rawf("USERHOST: %s", users);
} else if (typeof users === 'array') {
partition(users, 5)
.map(function (hosts) { return hosts.join(' '); })
Expand Down

0 comments on commit bc2353d

Please sign in to comment.