Fixed typo thats made server hang

This commit is contained in:
Mark Fisher 2013-02-13 15:25:27 +00:00
parent 602d603658
commit 500f9b8b48
1 changed files with 1 additions and 1 deletions

View File

@ -1429,7 +1429,7 @@ function composePadChangesets(padId, startNum, endNum, callback)
*/
exports.padUsersCount = function (padID, callback) {
callback(null, {
padUsersCount: socketio.sockets.clients(padId).length
padUsersCount: socketio.sockets.clients(padID).length
});
}