From 5f9a66aaa2a565d581c6754e91256227760eea5f Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Mon, 15 Jun 2020 20:44:48 +1000 Subject: [PATCH] Send labeled-response=all to indicate we do it for all commands --- irc/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/irc/config.go b/irc/config.go index c9db3f0b..676708e3 100644 --- a/irc/config.go +++ b/irc/config.go @@ -860,6 +860,9 @@ func LoadConfig(filename string) (config *Config, err error) { config.Server.supportedCaps = caps.NewCompleteSet() config.Server.capValues = make(caps.Values) + // indicates that we send labeled responses for ALL commands + config.Server.capValues[caps.LabeledResponse] = "all" + err = config.prepareListeners() if err != nil { return nil, fmt.Errorf("failed to prepare listeners: %v", err)