Fix BATCH parsing
This commit is contained in:
parent
2b349105aa
commit
489d508997
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
lines = event["server"].batches[identifier]
|
lines = event["server"].batches[identifier]
|
||||||
del event["server"].batches[identifier]
|
del event["server"].batches[identifier]
|
||||||
for line in lines:
|
for line in lines:
|
||||||
self.handle(event["server"], line)
|
self._handle(line)
|
||||||
|
|
||||||
# IRCv3 CHGHOST, a user's username and/or hostname has changed
|
# IRCv3 CHGHOST, a user's username and/or hostname has changed
|
||||||
@Utils.hook("raw.chghost")
|
@Utils.hook("raw.chghost")
|
||||||
|
|
Loading…
Reference in a new issue