From e94810ff941f3e55c80795d431a0a8d52bb66a0d Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Mon, 15 Aug 2016 11:01:35 +0800 Subject: Update to change the last change user saving strategy --- lib/realtime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/realtime.js b/lib/realtime.js index e18ac12a..2f5bbe34 100644 --- a/lib/realtime.js +++ b/lib/realtime.js @@ -602,8 +602,8 @@ function ifMayEdit(socket, callback) { mayEdit = false; break; } - //if user may edit and this note have owner (not anonymous usage) - if (socket.origin == 'operation' && mayEdit && note.owner) { + //if user may edit and this is a text operation + if (socket.origin == 'operation' && mayEdit) { //save for the last change user id if (socket.request.user && socket.request.user.logged_in) { note.lastchangeuser = socket.request.user.id; -- cgit v1.2.3