mirror of
https://github.com/moparisthebest/xmpp-ircd
synced 2025-03-11 06:59:51 -04: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)
|
||||
|
||||
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 :
|
||||
show = ''
|
||||
if arguments != '':
|
||||
|
Loading…
x
Reference in New Issue
Block a user