summary refs log tree commit diff
path: root/litterbox.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-12-26 13:57:59 -0500
committerJune McEnroe <june@causal.agency>2019-12-26 13:57:59 -0500
commit7a14403386c5467386d5402432bd3dfd49cc95b4 (patch)
tree2d85d89abafe0bc16d703f01f0db15f2eb5a3e74 /litterbox.c
parentInline queries, move stuff around (diff)
downloadlitterbox-7a14403386c5467386d5402432bd3dfd49cc95b4.tar.gz
litterbox-7a14403386c5467386d5402432bd3dfd49cc95b4.zip
Make sure context exists in handleReplyTopic
Diffstat (limited to 'litterbox.c')
-rw-r--r--litterbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/litterbox.c b/litterbox.c
index 1e49bf5..2a156b1 100644
--- a/litterbox.c
+++ b/litterbox.c
@@ -281,6 +281,7 @@ static void insertTopic(
 static void handleReplyTopic(struct Message *msg) {
 	require(msg, false, 2);
 	if (!strcmp(msg->cmd, "331")) msg->params[2] = "";
+	insertContext(msg->params[1], false);
 	insertTopic(msg->time, msg->params[1], msg->params[2]);
 }
 
plement serviceSignal, serviceStop, serviceRestartJune McEnroe 2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe 2020-08-14Switch to timespec for timeoutsJune McEnroe 2020-08-14Implement serviceStartJune McEnroe 2020-08-14Flesh out Service structJune McEnroe 2020-08-14Build environment for servicesJune McEnroe 2020-08-14Implement spawntab parsingJune McEnroe 2020-08-14Open syslog, daemonize, write PIDJune McEnroe 2020-08-14Implement user and group lookupJune McEnroe 2020-08-14Add install targetJune McEnroe 2020-08-14Add spawnd skeletonJune McEnroe