- fix logic error in previous commit: outgoing traffic should not mark session activity
authorAndreas Scherbaum <[email protected]>
Thu, 2 Feb 2012 00:01:57 +0000 (01:01 +0100)
committerAndreas Scherbaum <[email protected]>
Thu, 2 Feb 2012 00:01:57 +0000 (01:01 +0100)
docbot.pl

index 316fa482f40b6c29d4058d962e655e2c01ee7870..cbb3375fb9de6185dd7096a3511a7d735a1248d1 100755 (executable)
--- a/docbot.pl
+++ b/docbot.pl
@@ -2027,7 +2027,8 @@ sub on_irc_raw_out {
     my $irc = $sender->get_heap();
     my $session = find_irc_session($irc);
 
-    set_session_activity($session);
+    # do not mark session activity - if the session is timed out, it's not helpful if outgoing traffic marks new activity
+    #set_session_activity($session);
 }