Add missing xmppCommandINFOGET method

xmppCommandINFOGET method was missing (wtf) so telepaatti was not
working when it got NS_DISCO_INFO iq type get.
This commit is contained in:
Petteri 2010-05-08 15:59:58 +03:00
parent 5b9771d09d
commit dc0a562991

View File

@ -875,6 +875,10 @@ class ClientThread(Thread):
queryNS=NS_VERSION)
self.sendToXMPP(iq)
def xmppCommandINFOGET(self, jid):
"""Not finished """
pass
def xmppCommandSOFTWAREVERSION(self, jid):
"""Send set software version XMPP. Not finished """
pass
@ -1395,7 +1399,7 @@ class ClientThread(Thread):
elif erc == '503':
self.ircCommandERRORMUC(471, 'MUC is full', room)
else:
self.ircCommandERROR('MUC error not yet implemented')
self.ircCommandERROR('MUC error not yet implemented (%d %s)' % (erc, er))
else:
joining = self.joinQueue.has_key(room)
inroom = self.mucs.has_key(room)