You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest commits to master expose only a few properties in IrcConnection, even though the value in ircClient.conn actually refers to a subtype of net.Socket.
As a result, this is causing issues because many important properties/functions are no longer available in ircClient.conn, such as destroyed, and the write function only accepts string instead of also the Buffer type.
To work around this issue temporary, I replaced these 2 type declarations:
Latest commits to master expose only a few properties in
IrcConnection
, even though the value inircClient.conn
actually refers to a subtype ofnet.Socket
.As a result, this is causing issues because many important properties/functions are no longer available in
ircClient.conn
, such asdestroyed
, and thewrite
function only acceptsstring
instead of also theBuffer
type.To work around this issue temporary, I replaced these 2 type declarations:
The text was updated successfully, but these errors were encountered: