Skip to content

Commit

Permalink
server: don't assume sid is numeric
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Oct 7, 2012
1 parent a5d590d commit 537fc62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Expand Up @@ -165,7 +165,7 @@ Server.prototype.handleRequest = function(req, res){
Server.prototype.handshake = function(transport, req){
var id = base64id.generateId();

debug('handshaking client "%d"', id);
debug('handshaking client "%s"', id);

var transport = new transports[transport](req);
var socket = new Socket(id, this, transport);
Expand Down

0 comments on commit 537fc62

Please sign in to comment.