|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
/* global window: false */
|
|
|
|
|
/* global textsecure: false */
|
|
|
|
|
/* global storage: false */
|
|
|
|
|
/* global StringView: false */
|
|
|
|
|
/* global libloki: false */
|
|
|
|
|
/* global libsignal: false */
|
|
|
|
@ -917,15 +918,31 @@ MessageReceiver.prototype.extend({
|
|
|
|
|
p = this.handleEndSession(envelope.source);
|
|
|
|
|
}
|
|
|
|
|
return p.then(() =>
|
|
|
|
|
this.processDecrypted(envelope, msg, envelope.source).then(message => {
|
|
|
|
|
this.processDecrypted(envelope, msg, envelope.source).then(async message => {
|
|
|
|
|
const groupId = message.group && message.group.id;
|
|
|
|
|
const isBlocked = this.isGroupBlocked(groupId);
|
|
|
|
|
const isMe = envelope.source === textsecure.storage.user.getNumber();
|
|
|
|
|
const conversation = window.ConversationController.get(envelope.source);
|
|
|
|
|
const isLeavingGroup = Boolean(
|
|
|
|
|
message.group &&
|
|
|
|
|
message.group.type === textsecure.protobuf.GroupContext.Type.QUIT
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Check if we need to update any profile names
|
|
|
|
|
if (!isMe) {
|
|
|
|
|
if (message.profile) {
|
|
|
|
|
const name = JSON.parse(message.profile.name.encodeJSON());
|
|
|
|
|
await storage.saveProfile(envelope.source, { name });
|
|
|
|
|
} else {
|
|
|
|
|
await storage.removeProfile(envelope.source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update the conversation profle
|
|
|
|
|
if (conversation) {
|
|
|
|
|
conversation.updateProfile();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type === 'friend-request' && isMe) {
|
|
|
|
|
window.log.info(
|
|
|
|
|
'refusing to add a friend request to ourselves'
|
|
|
|
|