Fix messenger unable to send messages
This commit is contained in:
parent
32a3ed6842
commit
23e48a6b4f
@ -618,8 +618,10 @@ define([
|
|||||||
};
|
};
|
||||||
var onLeave = function (obj) {
|
var onLeave = function (obj) {
|
||||||
var channel = obj.id;
|
var channel = obj.id;
|
||||||
|
var chan = state.channels[channel];
|
||||||
var data = obj.info;
|
var data = obj.info;
|
||||||
if (contactsData[data.curvePublic]) {
|
// XXX Teams: if someone leaves a room, don't remove their data if they're also a friend
|
||||||
|
if (contactsData[data.curvePublic] && !(chan && chan.isFriendChat)) {
|
||||||
delete contactsData[data.curvePublic];
|
delete contactsData[data.curvePublic];
|
||||||
}
|
}
|
||||||
updateStatus(channel);
|
updateStatus(channel);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user