diff options
author | June McEnroe <june@causal.agency> | 2019-12-26 13:57:59 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-12-26 13:57:59 -0500 |
commit | 7a14403386c5467386d5402432bd3dfd49cc95b4 (patch) | |
tree | 2d85d89abafe0bc16d703f01f0db15f2eb5a3e74 /litterbox.c | |
parent | Inline queries, move stuff around (diff) | |
download | litterbox-7a14403386c5467386d5402432bd3dfd49cc95b4.tar.gz litterbox-7a14403386c5467386d5402432bd3dfd49cc95b4.zip |
Make sure context exists in handleReplyTopic
Diffstat (limited to '')
-rw-r--r-- | litterbox.c | 1 |
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]); } |