Set EnableCapabilityNegotiation to false by default. Fix wrong variable reference in method SupportsCapability

This commit is contained in:
Stefano 2022-03-09 11:42:48 +01:00
parent abfcc6aac2
commit bf99ab6001
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ func NewConfig(nick string, args ...string) *Config {
Recover: (*Conn).LogPanic, // in dispatch.go
SplitLen: defaultSplit,
Timeout: 60 * time.Second,
EnableCapabilityNegotiation: true,
EnableCapabilityNegotiation: false,
}
cfg.Me.Ident = "goirc"
if len(args) > 0 && args[0] != "" {
@ -306,7 +306,7 @@ func (conn *Conn) DisableStateTracking() {
// SupportsCapability returns true if the server supports the given capability.
func (conn *Conn) SupportsCapability(cap string) bool {
return conn.currCaps.Has(cap)
return conn.supportedCaps.Has(cap)
}
// HasCapability returns true if the given capability has been acked by the server during negotiation.