diff options
| author | 2015-10-16 14:42:51 -0400 | |
|---|---|---|
| committer | 2015-10-16 14:42:51 -0400 | |
| commit | b536bd8edb7e63df6950f0bc4bdd9b5ccc522bf8 (patch) | |
| tree | 845e72b7611f9c0dbe59b37378cb1c284b9fe00d | |
| parent | ctcp: Merge ctcp tables into one table (diff) | |
| download | KVIrc-b536bd8edb7e63df6950f0bc4bdd9b5ccc522bf8.tar.gz KVIrc-b536bd8edb7e63df6950f0bc4bdd9b5ccc522bf8.tar.bz2 KVIrc-b536bd8edb7e63df6950f0bc4bdd9b5ccc522bf8.zip | |
lithandler: Add verbose for initial channel joins
| -rw-r--r-- | src/kvirc/sparser/KviIrcServerParser_literalHandlers.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kvirc/sparser/KviIrcServerParser_literalHandlers.cpp b/src/kvirc/sparser/KviIrcServerParser_literalHandlers.cpp index 04ee586d5..fce505533 100644 --- a/src/kvirc/sparser/KviIrcServerParser_literalHandlers.cpp +++ b/src/kvirc/sparser/KviIrcServerParser_literalHandlers.cpp @@ -242,7 +242,8 @@ void KviIrcServerParser::parseLiteralJoin(KviIrcMessage *msg) // we should disable disconnection detection during the parsing of a single // message in KviIrcSocket. See the comment in KviIrcSocket::processData() for more info. - // FIXME: #warning "IF VERBOSE SAY THAT WE'RE REQUESTING MODES & BAN LIST" (Synching channel) + if(_OUTPUT_VERBOSE) + console->output(KVI_OUT_SYSTEMMESSAGE,__tr2qs("Requesting modes and ban list for \r!c\r%Q\r..."),&channel); msg->connection()->requestQueue()->enqueueChannel(chan); } else { |
