Skip to content

Commit

Permalink
Fix my fix which was supposed to fix #220
Browse files Browse the repository at this point in the history
Thanks to KindOne for reporting the issue with that fix.

363 numeric was sent twice to the client for attached channels.
  • Loading branch information
DarthGandalf committed Dec 24, 2012
1 parent 369f93c commit 412bdb7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/IRCSock.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -415,12 +415,11 @@ void CIRCSock::ReadLine(const CString& sData) {
} }
} }
if (pChan->IsDetached()) { if (pChan->IsDetached()) {
// don't put it to clients
return; return;
} }
} }


m_pNetwork->PutUser(sLine);

break; break;
} }
case 381: // You are now an IRC Operator case 381: // You are now an IRC Operator
Expand Down

0 comments on commit 412bdb7

Please sign in to comment.