diff options
author | Max Wu | 2018-01-16 15:51:24 +0800 |
---|---|---|
committer | GitHub | 2018-01-16 15:51:24 +0800 |
commit | 68879d20ed7a6dec8872f080ce229ec2540c9720 (patch) | |
tree | bfc02782cf5ed296b4f3e2ff00c098ba21d58c4b /lib | |
parent | 4b419f4877a90717d3d639532b6316f8197dc28a (diff) |
Fix minor typos
of wrong parameters passing order and wrong user object indexing in for each function
Diffstat (limited to '')
-rw-r--r-- | lib/realtime.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/realtime.js b/lib/realtime.js index 361bbf09..e03e2d0b 100644 --- a/lib/realtime.js +++ b/lib/realtime.js @@ -709,7 +709,7 @@ function connection (socket) { return failConnection(404, 'note id not found', socket) } - if (isDuplicatedInSocketQueue(socket, connectionSocketQueue)) return + if (isDuplicatedInSocketQueue(connectionSocketQueue, socket)) return // store noteId in this socket session socket.noteId = noteId @@ -723,8 +723,8 @@ function connection (socket) { var maxrandomcount = 10 var found = false do { - Object.keys(notes[noteId].users).forEach(function (user) { - if (user.color === color) { + Object.keys(notes[noteId].users).forEach(function (userId) { + if (notes[noteId].users[userId].color === color) { found = true } }) |