From ec3895e9548cf14d72c85e7cd8a95ef723e2d1fd Mon Sep 17 00:00:00 2001 From: imaginos Date: Sun, 15 May 2005 04:49:27 +0000 Subject: [PATCH] speed things up a bit git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@304 726aef4b-f618-498e-8847-2d620e286838 --- modules/stickychan.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/stickychan.cpp b/modules/stickychan.cpp index 0d631500..3ea33b48 100644 --- a/modules/stickychan.cpp +++ b/modules/stickychan.cpp @@ -60,6 +60,7 @@ public: pChan->SetKey( it->second ); m_pUser->AddChan( pChan ); PutModule( "Joining [" + it->first + "]" ); + PutIRC( "JOIN " + it->first + ( it->second.empty() ? "" : it->second ) ); } } }