Fix sending empty pep data
This commit is contained in:
		
							parent
							
								
									1462f89229
								
							
						
					
					
						commit
						e85bc52c8b
					
				
					 5 changed files with 8 additions and 10 deletions
				
			
		| 
						 | 
				
			
			@ -106,7 +106,7 @@ class PEP:
 | 
			
		|||
            retract = items.getTag('retract')
 | 
			
		||||
            if retract is not None:
 | 
			
		||||
                for handler in handlers:
 | 
			
		||||
                    handler[PEPHandlerType.RETRACT](jid, retract.getID())
 | 
			
		||||
                    handler[PEPHandlerType.RETRACT](jid, retract.getAttr('id'))
 | 
			
		||||
                    raise nbxmpp.NodeProcessed
 | 
			
		||||
 | 
			
		||||
            # Check if we have items
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -89,7 +89,7 @@ class UserActivity(AbstractPEPModule):
 | 
			
		|||
    def _build_node(self, data):
 | 
			
		||||
        item = nbxmpp.Node('activity', {'xmlns': self.namespace})
 | 
			
		||||
        if data is None:
 | 
			
		||||
            return
 | 
			
		||||
            return item
 | 
			
		||||
        activity, subactivity, message = data
 | 
			
		||||
        if activity:
 | 
			
		||||
            i = item.addChild(activity)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -88,7 +88,7 @@ class UserMood(AbstractPEPModule):
 | 
			
		|||
    def _build_node(self, data: Optional[Tuple[str, str]]) -> nbxmpp.Node:
 | 
			
		||||
        item = nbxmpp.Node('mood', {'xmlns': nbxmpp.NS_MOOD})
 | 
			
		||||
        if data is None:
 | 
			
		||||
            return
 | 
			
		||||
            return item
 | 
			
		||||
        mood, text = data
 | 
			
		||||
        if mood:
 | 
			
		||||
            item.addChild(mood)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -67,9 +67,8 @@ class UserNickname(AbstractPEPModule):
 | 
			
		|||
 | 
			
		||||
    def _build_node(self, data: Optional[str]) -> Optional[nbxmpp.Node]:
 | 
			
		||||
        item = nbxmpp.Node('nick', {'xmlns': nbxmpp.NS_NICK})
 | 
			
		||||
        if data is None:
 | 
			
		||||
            return None
 | 
			
		||||
        item.addData(data)
 | 
			
		||||
        if data is not None:
 | 
			
		||||
            item.addData(data)
 | 
			
		||||
        return item
 | 
			
		||||
 | 
			
		||||
    def _notification_received(self,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -331,11 +331,10 @@ class ProfileWindow(Gtk.ApplicationWindow):
 | 
			
		|||
                transient_for=self)
 | 
			
		||||
            return
 | 
			
		||||
        vcard_, sha = self.make_vcard()
 | 
			
		||||
        nick = ''
 | 
			
		||||
        if 'NICKNAME' in vcard_:
 | 
			
		||||
            nick = vcard_['NICKNAME']
 | 
			
		||||
        nick = vcard_.get('NICKNAME')
 | 
			
		||||
        if nick:
 | 
			
		||||
            app.connections[self.account].get_module('UserNickname').send(nick)
 | 
			
		||||
        if nick == '':
 | 
			
		||||
        else:
 | 
			
		||||
            app.connections[self.account].get_module('UserNickname').retract()
 | 
			
		||||
            nick = app.config.get_per('accounts', self.account, 'name')
 | 
			
		||||
        app.nicks[self.account] = nick
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue