-
Notifications
You must be signed in to change notification settings - Fork 231
QUIT does not respect server-time #2218
Copy link
Copy link
Closed
Description
e.g. :c!~u@tcrp2947vxqnw.irc QUIT :Ping timeout: 2m30s
Lines 1193 to 1197 in 7e18362
| // #364: don't send QUIT lines to unregistered clients | |
| if client.registered { | |
| quitMsg := ircmsg.MakeMessage(nil, client.nickMaskString, "QUIT", message) | |
| finalData, _ = quitMsg.LineBytesStrict(false, MaxLineLen) | |
| } |
Right now we send the same QUIT line to all sessions regardless of their caps. This should respect the server-time cap.
Reactions are currently unavailable