diff options
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/client.c b/client.c index 2b075ec..3ed8a81 100644 --- a/client.c +++ b/client.c @@ -173,17 +173,14 @@ static void handleQuit(struct Client *client, struct Message *msg) { static void handlePrivmsg(struct Client *client, struct Message *msg) { if (!msg->params[0] || !msg->params[1]) return; - // FIXME: Check against ISUPPORT CHANTYPES? - if (msg->params[0][0] == '#') { - char line[1024]; - snprintf( - line, sizeof(line), ":%s %s %s :%s", - stateSelf(), msg->cmd, msg->params[0], msg->params[1] - ); - size_t diff = ringDiff(client->consumer); - ringProduce(line); - if (!diff) ringConsume(NULL, client->consumer); - } + char line[1024]; + snprintf( + line, sizeof(line), ":%s %s %s :%s", + stateEcho(), msg->cmd, msg->params[0], msg->params[1] + ); + size_t diff = ringDiff(client->consumer); + ringProduce(line); + if (!diff) ringConsume(NULL, client->consumer); serverFormat("%s %s :%s\r\n", msg->cmd, msg->params[0], msg->params[1]); } |