summaryrefslogtreecommitdiff
path: root/message.c
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-09-07 17:25:01 +0100
committerLuke Bratch <luke@bratch.co.uk>2019-09-07 17:25:01 +0100
commit3b836818fe3626798924a56f1660ab5423998094 (patch)
tree3fe8a232fb6539ba881962d1e38a9e858fd654af /message.c
parent6ae84b9245bfaa832f847a31952b2ae33daf2299 (diff)
Avoid more replay log NICK synchronisation issues by ignoring replay log nick changes from us if not our current nick, and by completely ignoring replaying any type of replay log line from before blabouncer was launched.
Diffstat (limited to 'message.c')
-rw-r--r--message.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/message.c b/message.c
index 9058814..3036eb2 100644
--- a/message.c
+++ b/message.c
@@ -416,7 +416,8 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int
writereplayline(str, settings->basedir);
}
- // TODO - Is there a way to log nick changes to the normal log despite not tracking channels or nicks in each channel?
+ // TODO - Is there a way to log nick changes to the normal log despite not tracking nicks in each channel?
+ // (We do track channel names themselves.)
free(svrprefixcopy);
return 1;