parent
					
						
							
								6a268f0325
							
						
					
				
			
			
				commit
				
					
						d8381cfc47
					
				
			
		
					 2 changed files with 44 additions and 34 deletions
				
			
		| 
						 | 
				
			
			@ -36955,28 +36955,33 @@ MessageReceiver.prototype = {
 | 
			
		|||
        return this.handleAttachment(attachmentPointer).then(function() {
 | 
			
		||||
            var groupBuffer = new GroupBuffer(attachmentPointer.data);
 | 
			
		||||
            var groupDetails = groupBuffer.next();
 | 
			
		||||
            var promises = [];
 | 
			
		||||
            while (groupDetails !== undefined) {
 | 
			
		||||
                (function(groupDetails) {
 | 
			
		||||
                var promise = (function(groupDetails) {
 | 
			
		||||
                    groupDetails.id = getString(groupDetails.id);
 | 
			
		||||
                    textsecure.storage.groups.getGroup(groupDetails.id).
 | 
			
		||||
                    then(function(existingGroup) {
 | 
			
		||||
                        if (existingGroup === undefined) {
 | 
			
		||||
                            return textsecure.storage.groups.createNewGroup(
 | 
			
		||||
                                groupDetails.members, groupDetails.id
 | 
			
		||||
                            );
 | 
			
		||||
                        } else {
 | 
			
		||||
                            return textsecure.storage.groups.updateNumbers(
 | 
			
		||||
                                groupDetails.id, groupDetails.members
 | 
			
		||||
                            );
 | 
			
		||||
                        }
 | 
			
		||||
                    }).then(function() {
 | 
			
		||||
                        var ev = new Event('group');
 | 
			
		||||
                        ev.groupDetails = groupDetails;
 | 
			
		||||
                        eventTarget.dispatchEvent(ev);
 | 
			
		||||
                    });
 | 
			
		||||
                    return textsecure.storage.groups.getGroup(groupDetails.id).
 | 
			
		||||
                        then(function(existingGroup) {
 | 
			
		||||
                            if (existingGroup === undefined) {
 | 
			
		||||
                                return textsecure.storage.groups.createNewGroup(
 | 
			
		||||
                                    groupDetails.members, groupDetails.id
 | 
			
		||||
                                );
 | 
			
		||||
                            } else {
 | 
			
		||||
                                return textsecure.storage.groups.updateNumbers(
 | 
			
		||||
                                    groupDetails.id, groupDetails.members
 | 
			
		||||
                                );
 | 
			
		||||
                            }
 | 
			
		||||
                        }).then(function() {
 | 
			
		||||
                            var ev = new Event('group');
 | 
			
		||||
                            ev.groupDetails = groupDetails;
 | 
			
		||||
                            eventTarget.dispatchEvent(ev);
 | 
			
		||||
                        });
 | 
			
		||||
                })(groupDetails);
 | 
			
		||||
                groupDetails = groupBuffer.next();
 | 
			
		||||
                promises.push(promise);
 | 
			
		||||
            }
 | 
			
		||||
            Promise.all(promises).then(function() {
 | 
			
		||||
                eventTarget.dispatchEvent(new Event('groupsync'));
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
    },
 | 
			
		||||
    handleAttachment: function(attachment) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue