prevent some tracebacks

This commit is contained in:
Yann Leboulanger 2014-07-10 20:30:20 +02:00
parent eb1db030cb
commit 735b2a6935
1 changed files with 6 additions and 0 deletions

View File

@ -2892,6 +2892,8 @@ class Connection(CommonConnection, ConnectionHandlers):
""" """
Send invitation Send invitation
""" """
if not gajim.account_is_connected(self.name):
return
contact = gajim.contacts.get_contact_from_full_jid(self.name, to) contact = gajim.contacts.get_contact_from_full_jid(self.name, to)
if contact and contact.supports(nbxmpp.NS_CONFERENCE): if contact and contact.supports(nbxmpp.NS_CONFERENCE):
# send direct invite # send direct invite
@ -2918,6 +2920,8 @@ class Connection(CommonConnection, ConnectionHandlers):
""" """
decline a groupchat invitation decline a groupchat invitation
""" """
if not gajim.account_is_connected(self.name):
return
message=nbxmpp.Message(to=room) message=nbxmpp.Message(to=room)
c = message.addChild(name='x', namespace=nbxmpp.NS_MUC_USER) c = message.addChild(name='x', namespace=nbxmpp.NS_MUC_USER)
c = c.addChild(name='decline', attrs={'to': to}) c = c.addChild(name='decline', attrs={'to': to})
@ -2929,6 +2933,8 @@ class Connection(CommonConnection, ConnectionHandlers):
""" """
Request voice in a moderated room Request voice in a moderated room
""" """
if not gajim.account_is_connected(self.name):
return
message = nbxmpp.Message(to=room) message = nbxmpp.Message(to=room)
x = nbxmpp.DataForm(typ='submit') x = nbxmpp.DataForm(typ='submit')