labeled response raw.received should fire BEFORE line_handler's
This commit is contained in:
parent
22af5fae46
commit
5c9e965d25
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
import uuid
|
import uuid
|
||||||
from src import ModuleManager, utils
|
from src import EventManager, ModuleManager, utils
|
||||||
|
|
||||||
CAP = utils.irc.Capability("labeled-response", "draft/labeled-response-0.2",
|
CAP = utils.irc.Capability("labeled-response", "draft/labeled-response-0.2",
|
||||||
depends_on=["batch"])
|
depends_on=["batch"])
|
||||||
|
@ -38,6 +38,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
event["events"])
|
event["events"])
|
||||||
|
|
||||||
@utils.hook("raw.received")
|
@utils.hook("raw.received")
|
||||||
|
@utils.kwarg("priority", EventManager.PRIORITY_HIGH)
|
||||||
def raw_recv(self, event):
|
def raw_recv(self, event):
|
||||||
if not event["line"].command == "BATCH":
|
if not event["line"].command == "BATCH":
|
||||||
label = TAG.get_value(event["line"].tags)
|
label = TAG.get_value(event["line"].tags)
|
||||||
|
|
Loading…
Reference in a new issue