From f120a566a7fd0ae911e74997c71d7e1c1f8312ba Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 16 Mar 2023 13:58:20 +0200 Subject: [PATCH] Client - Added TODO regarding what needs to be done to update the `"PRIVMSG"` sub-handler --- source/birchwood/client/client.d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 0f5187c..ffc17b8 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -609,6 +609,11 @@ public class Client : Thread if(cmp(command, "PRIVMSG") == 0) { + // TODO: We will need a non kv pair thing as well to see (in the + // ... case of channel messages) the singular pair + // ... name. + // + // Then our message will be in `getTrailing()` logger.debug_("PrivMessage parser (kv-pairs): ", ircMessage.getKVPairs()); logger.debug_("PrivMessage parser (trailing): ", ircMessage.getTrailing());