summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Eskola <fruitiex@gmail.com>2013-08-11 00:44:47 +0300
committerRasmus Eskola <fruitiex@gmail.com>2013-08-11 00:44:47 +0300
commit06f6ccaace282e853217f28564face3788f142b3 (patch)
tree9718052c734d82d2b47d5ecf2bd21b7edf9cbcf5
parent5722aee3239732b8174ef0e0ea86424800b8c036 (diff)
fix more debug stuff that was left in by accident
-rw-r--r--backlog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/backlog.cpp b/backlog.cpp
index d2de511..701b4f3 100644
--- a/backlog.cpp
+++ b/backlog.cpp
@@ -189,7 +189,7 @@ void CBacklogMod::OnModCommand(const CString& sCommand) {
// now actually print
for (std::vector<CString>::reverse_iterator it = LinesToPrint.rbegin(); it != LinesToPrint.rend(); ++it) {
- //if(isInChan || true) {
+ if(isInChan || true) {
CString Line = *it;
size_t FirstWS = Line.find_first_of(' '); // position of first whitespace char in line
size_t NickLen = 3;
@@ -210,9 +210,9 @@ void CBacklogMod::OnModCommand(const CString& sCommand) {
} catch (int e) {
PutModule("Malformed log line! " + Line);
}
- //} else {
- //PutModule(*it);
- //}
+ } else {
+ PutModule(*it);
+ }
}
if (isInChan) {