A new version of go-irc includes a fix that makes irc.Conn.ReadMessage
ignore empty messages. This fixes soju closing connections on an empty
message.
---
go.mod | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go.mod b/go.mod
index 462d99c..e3b1457 100644
--- a/go.mod
+++ b/go.mod
@@ -11,6 +11,6 @@ require (
github.com/pires/go-proxyproto v0.2.0
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/sys v0.0.0-20201024232916-9f70ab9862d5 // indirect
- gopkg.in/irc.v3 v3.1.3
+ gopkg.in/irc.v3 v3.1.4
nhooyr.io/websocket v1.8.6
)
--
2.26.2