mirror of https://github.com/status-im/codimd.git
Fix minor typos
of wrong parameters passing order and wrong user object indexing in for each function
This commit is contained in:
parent
4b419f4877
commit
68879d20ed
|
@ -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
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue