summaryrefslogtreecommitdiff
path: root/replay.c
diff options
context:
space:
mode:
Diffstat (limited to 'replay.c')
-rw-r--r--replay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/replay.c b/replay.c
index 6e7370f..11c75bc 100644
--- a/replay.c
+++ b/replay.c
@@ -352,8 +352,9 @@ int lastspokesecondsago(char *nick, char *basedir) {
continue;
}
- // Was it said by our 'nick'?
- extractnickfromprefix(tokens[1]);
+ // Was it said by our 'nick'? Disable extractnickfromprefix() debugging
+ // as it gets very noisy when we call it from here.
+ extractnickfromprefix(tokens[1], 0);
if (strncmp(tokens[1], nick, strlen(nick))) {
// Not our 'nick', continue
continue;