mirror of https://github.com/nealey/firebot
Merge branch 'master' of ssh://neale@fozzie.woozle.org/home/neale/public_html/repos/firebot
This commit is contained in:
commit
09e9796758
5
irc.py
5
irc.py
|
@ -397,6 +397,11 @@ class SmartIRCHandler(IRCHandler):
|
||||||
sender = self.recipient(args[2])
|
sender = self.recipient(args[2])
|
||||||
addl = (unpack_nuhost(args)[0],)
|
addl = (unpack_nuhost(args)[0],)
|
||||||
elif op in ("INVITE",):
|
elif op in ("INVITE",):
|
||||||
|
# INVITE [u'pflarr!~pflarr@www.clanspum.net', u'INVITE', u'gallium', u'#mysterious']
|
||||||
|
# INVITE [u'pflarr!~pflarr@www.clanspum.net', u'INVITE', u'gallium'] #mysterious
|
||||||
|
if len(args) > 3:
|
||||||
|
forum = self.recipient(args[3])
|
||||||
|
else:
|
||||||
forum = self.recipient(text)
|
forum = self.recipient(text)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue