Skip to content

Commit

Permalink
#27 Our emulation for JSON.stringify used spurious space.
Browse files Browse the repository at this point in the history
  • Loading branch information
majek committed Nov 28, 2011
1 parent 070a529 commit edcc817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport.coffee
Expand Up @@ -224,7 +224,7 @@ class GenericReceiver
doSendBulk: (messages) ->
q_msgs = for m in messages
utils.quote(m)
@doSendFrame('a' + '[' + q_msgs.join(', ') + ']')
@doSendFrame('a' + '[' + q_msgs.join(',') + ']')


# Write stuff directly to connection.
Expand Down

0 comments on commit edcc817

Please sign in to comment.