summary refs log tree commit diff
path: root/state.c
diff options
context:
space:
mode:
Diffstat (limited to 'state.c')
-rw-r--r--state.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/state.c b/state.c
index 8d45b2e..02eaf72 100644
--- a/state.c
+++ b/state.c
@@ -263,5 +263,7 @@ void stateSync(struct Client *client) {
 	if (chan.len) assert(self.origin);
 	for (size_t i = 0; i < chan.len; ++i) {
 		clientFormat(client, ":%s JOIN %s\r\n", self.origin, chan.names[i]);
+		if (stateJoinTopic) serverFormat("TOPIC %s\r\n", chan.names[i]);
+		if (stateJoinNames) serverFormat("NAMES %s\r\n", chan.names[i]);
 	}
 }