mirror of
https://github.com/moparisthebest/xmpp-ircd
synced 2024-12-21 23:18:55 -05:00
Noop AWAY commands as a quick `fix' to avoid crashes
Not sure what's actually going wrong here. See: <https://github.com/moparisthebest/xmpp-ircd/issues/2>
This commit is contained in:
parent
3d5628aead
commit
126d1a414c
@ -1530,6 +1530,10 @@ class ClientThread(Thread):
|
|||||||
self.xmppCommandGETWHOIS(jid)
|
self.xmppCommandGETWHOIS(jid)
|
||||||
|
|
||||||
elif command == 'AWAY':
|
elif command == 'AWAY':
|
||||||
|
# FIXME <https://github.com/moparisthebest/xmpp-ircd/issues/2>
|
||||||
|
self.printError('AWAY command ignored to avoid crashing (FIXME): %s' % data)
|
||||||
|
return
|
||||||
|
|
||||||
arguments = arguments[1:] # remove the :
|
arguments = arguments[1:] # remove the :
|
||||||
show = ''
|
show = ''
|
||||||
if arguments != '':
|
if arguments != '':
|
||||||
|
Loading…
Reference in New Issue
Block a user