add uid to userdata for better notifications

This commit is contained in:
ansuz
2017-03-24 13:32:42 +01:00
parent fa9249ef29
commit 912215185f
4 changed files with 17 additions and 9 deletions

View File

@@ -310,7 +310,8 @@ define([
}
myUserName = myUserNameTemp;
myData[myID] = {
name: myUserName
name: myUserName,
uid: Cryptpad.getUid(),
};
addToUserData(myData);
Cryptpad.setAttribute('username', newName, function (err, data) {
@@ -713,7 +714,8 @@ define([
setName(lastName);
} else {
myData[myID] = {
name: ""
name: "",
uid: Cryptpad.getUid()
};
addToUserData(myData);
realtimeOptions.onLocal();
@@ -724,7 +726,7 @@ define([
if (newPad) {
cursor.setToEnd();
} else {
cursor.setToFix();
cursor.setToStart();
}
});
};