From a858a1e0a005cb62843fef77fa275de724d8e3d3 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 30 Mar 2026 17:42:12 +0100 Subject: [PATCH] Fix the missing AUTOLOGIN extension. --- modules/nickserv/ns_cert.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nickserv/ns_cert.cpp b/modules/nickserv/ns_cert.cpp index ffdecf493..6e9602d9b 100644 --- a/modules/nickserv/ns_cert.cpp +++ b/modules/nickserv/ns_cert.cpp @@ -648,6 +648,7 @@ private: NSCertListImpl::ExtensibleItem certs; CertServiceImpl cs; NSCertInfoType cert_type; + SerializableExtensibleItem autologin; bool CanLogin(User *u, NickCore *nc) { @@ -677,6 +678,7 @@ public: , commandnssasetautologin(this) , certs(this, NICKSERV_CERT_EXT) , cs(this) + , autologin(this, "AUTOLOGIN") { if (!IRCD || !IRCD->CanCertFP) throw ModuleException("Your IRCd does not support ssl client certificates");