From e3f456255bb26ca7e3c8350a62aa724a56e60059 Mon Sep 17 00:00:00 2001 From: Alex McGrath Date: Tue, 29 Jun 2021 13:04:33 +0100 Subject: [PATCH] Fix SASL joining channels after auth --- lisp/net/rcirc.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index d1b87abb62b..154413871c7 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -3516,7 +3516,8 @@ PROCESS is the process object for the current connection." (rcirc-handler-generic process "900" sender args nil) (when (not rcirc-finished-sasl) (setq-local rcirc-finished-sasl t) - (rcirc-send-string process "CAP" "END"))) + (rcirc-send-string process "CAP" "END")) + (rcirc-join-channels-post-auth process)) (defgroup rcirc-faces nil -- 2.39.2