Fix to handle undefined document on update history
This commit is contained in:
parent
f3d4b55856
commit
c98d263928
1 changed files with 2 additions and 2 deletions
|
@ -396,7 +396,7 @@ function finishConnection(socket, note, user) {
|
|||
// update user note history
|
||||
setTimeout(function () {
|
||||
var noteId = note.alias ? note.alias : LZString.compressToBase64(note.id);
|
||||
history.updateHistory(user.userid, noteId, note.server.document);
|
||||
if (note.server) history.updateHistory(user.userid, noteId, note.server.document);
|
||||
}, 0);
|
||||
|
||||
emitOnlineUsers(socket);
|
||||
|
@ -669,7 +669,7 @@ function operationCallback(socket, operation) {
|
|||
// update user note history
|
||||
setTimeout(function() {
|
||||
var noteId = note.alias ? note.alias : LZString.compressToBase64(note.id);
|
||||
history.updateHistory(userId, noteId, note.server.document);
|
||||
if (note.server) history.updateHistory(userId, noteId, note.server.document);
|
||||
}, 0);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue