Fix duplicate friend data

pull/1/head
yflory 2020-11-25 15:14:33 +01:00
parent 47f043f3d7
commit cdda692492
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,7 @@ define([
Msg.updateMyData = function (store, curve) {
var myData = createData(store.proxy, false);
if (store.proxy.friends) {
store.proxy.friends.me = myData;
store.proxy.friends.me = Util.clone(myData);
delete store.proxy.friends.me.channel;
}
if (store.modules['team']) {
@ -99,6 +99,7 @@ define([
}
var todo = function (friend) {
if (!friend || !friend.notifications) { return; }
delete friend.user;
myData.channel = friend.channel;
store.mailbox.sendTo('UPDATE_DATA', myData, {
channel: friend.notifications,