mirror of
https://github.com/jeremyd/ergo.git
synced 2026-04-26 15:40:00 -07:00
deprecate message truncation
Implements #1577, but the issue should remain open until we clean up the debugging loglines.
This commit is contained in:
4
vendor/github.com/goshuirc/irc-go/ircreader/ircreader.go
generated
vendored
4
vendor/github.com/goshuirc/irc-go/ircreader/ircreader.go
generated
vendored
@@ -63,6 +63,10 @@ func (cc *IRCReader) ReadLine() ([]byte, error) {
|
||||
line := cc.buf[cc.start : cc.searchFrom+nlidx]
|
||||
cc.start = cc.searchFrom + nlidx + 1
|
||||
cc.searchFrom = cc.start
|
||||
// treat \r\n as the line terminator if it was present
|
||||
if 0 < len(line) && line[len(line)-1] == '\r' {
|
||||
line = line[:len(line)-1]
|
||||
}
|
||||
return line, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user