.send_raw() should be used if we're not .send()ing a ParsedLine
This commit is contained in:
parent
ab4289aceb
commit
5028eb02d5
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ def handle_005(events, event):
|
||||||
|
|
||||||
if "NAMESX" in isupport and not event["server"].has_capability_str(
|
if "NAMESX" in isupport and not event["server"].has_capability_str(
|
||||||
"multi-prefix"):
|
"multi-prefix"):
|
||||||
event["server"].send("PROTOCTL NAMESX")
|
event["server"].send_raw("PROTOCTL NAMESX")
|
||||||
|
|
||||||
if "PREFIX" in isupport:
|
if "PREFIX" in isupport:
|
||||||
modes, symbols = isupport["PREFIX"][1:].split(")", 1)
|
modes, symbols = isupport["PREFIX"][1:].split(")", 1)
|
||||||
|
|
Loading…
Reference in a new issue