From 9a7e41a123b5bbcb1bcd835f29eb5321740e77d2 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sat, 14 Feb 2026 00:26:34 +0300 Subject: Show topic in LIST Well, it was an empty string because back then topics weren't done yet --- handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handle.c b/handle.c index c444ff9..9919c8e 100644 --- a/handle.c +++ b/handle.c @@ -140,7 +140,7 @@ list(struct Message *msg, struct Peer *peer) if (!one || !strcmp(channels[i].name, msg->params[0])) { snprintf(count, sizeof(count), "%zu", channels[i].peers_c); - reply(peer, 322, channels[i].name, count, ""); + reply(peer, 322, channels[i].name, count, channels[i].topic); } reply(peer, 323); -- cgit 1.4.1