projects
/
docbot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab3ce83
)
- fix logic error in previous commit: outgoing traffic should not mark session activity
author
Andreas Scherbaum
<
[email protected]
>
Thu, 2 Feb 2012 00:01:57 +0000
(
01:01
+0100)
committer
Andreas Scherbaum
<
[email protected]
>
Thu, 2 Feb 2012 00:01:57 +0000
(
01:01
+0100)
docbot.pl
patch
|
blob
|
blame
|
history
diff --git
a/docbot.pl
b/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);
}