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

@@ -448,7 +448,8 @@ define([
var myID = APP.myID;
var myData = {};
myData[myID] = {
name: myUserName
name: myUserName,
uid: Cryptpad.getUid(),
};
addToUserData(myData);
Cryptpad.setAttribute('username', newName, function (err, data) {
@@ -652,7 +653,8 @@ define([
} else {
var myData = {};
myData[info.myId] = {
name: ""
name: "",
uid: Cryptpad.getUid(),
};
addToUserData(myData);
APP.$userNameButton.click();