Skip to content

Commit

Permalink
Fixing bug...
Browse files Browse the repository at this point in the history
  • Loading branch information
DanBUK committed Feb 2, 2011
1 parent 5a8f66b commit c0d1941
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion socket-demo.js
Expand Up @@ -8,7 +8,8 @@ var server = http.createServer(function (req, res) {
if (err) res.end(err.toString());
else res.end(data);
});
}).listen(8051);
});
server.listen(8051);

var socket = io.listen(server, {
flashPolicyServer: false,
Expand Down

0 comments on commit c0d1941

Please sign in to comment.