From 03ea6bb99ecb82b79d760af67e604cce5e852778 Mon Sep 17 00:00:00 2001 From: "." <.@.> Date: Sat, 7 May 2016 17:52:07 +1200 Subject: [PATCH] send channel mode immediately upon join --HG-- branch : nmdc-ircfrontend --- server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server.go b/server.go index 76a72ed..5c4aa31 100644 --- a/server.go +++ b/server.go @@ -307,6 +307,9 @@ func (s *Server) handleRegisteredCommand(command string, args []string) { // Acknowledge s.reply(rplJoin, s.upstreamLauncher.Self.Nick, BLESSED_CHANNEL) + // Send channel mode immediately (hexchat optimisation) + s.sendChannelMode() + // Send (initially just us) nicklist for the chat channel s.sendNames()