3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-25 05:19:25 +01:00

fix incorrect handling of overlong lines when allow-truncation is enabled

This commit is contained in:
Shivaram Lingamneni 2021-08-02 21:49:42 -04:00
parent d8dc24dee8
commit cf25e894e1

View File

@ -711,9 +711,11 @@ func (client *Client) run(session *Session) {
} else if err == ircmsg.ErrorTagsTooLong { } else if err == ircmsg.ErrorTagsTooLong {
session.Send(nil, client.server.name, ERR_INPUTTOOLONG, client.Nick(), client.t("Input line contained excess tag data")) session.Send(nil, client.server.name, ERR_INPUTTOOLONG, client.Nick(), client.t("Input line contained excess tag data"))
continue continue
} else if err == ircmsg.ErrorBodyTooLong && !client.server.Config().Server.Compatibility.allowTruncation { } else if err == ircmsg.ErrorBodyTooLong {
session.Send(nil, client.server.name, ERR_INPUTTOOLONG, client.Nick(), client.t("Input line too long")) if !client.server.Config().Server.Compatibility.allowTruncation {
continue session.Send(nil, client.server.name, ERR_INPUTTOOLONG, client.Nick(), client.t("Input line too long"))
continue
} // else: proceed with the truncated line
} else if err != nil { } else if err != nil {
client.Quit(client.t("Received malformed line"), session) client.Quit(client.t("Received malformed line"), session)
break break