summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-11 17:59:12 -0500
committerJune McEnroe <june@causal.agency>2021-01-11 17:59:12 -0500
commit763802cae630e628255a572806de03fa397f4dae (patch)
tree6a5ff6ae3d7e4d8662aa3fd69b46fd892190fba4
parentCheck fprintf return values rather than ferror (diff)
downloadcatgirl-763802cae630e628255a572806de03fa397f4dae.tar.gz
catgirl-763802cae630e628255a572806de03fa397f4dae.zip
Don't pass nick to urlScan for MOTD and help
-rw-r--r--handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/handle.c b/handle.c
index 9b4cdbd..9c5fac3 100644
--- a/handle.c
+++ b/handle.c
@@ -302,7 +302,7 @@ static void handleReplyISupport(struct Message *msg) {
 static void handleReplyMOTD(struct Message *msg) {
 	require(msg, false, 2);
 	char *line = msg->params[1];
-	urlScan(Network, msg->nick, line);
+	urlScan(Network, NULL, line);
 	if (!strncmp(line, "- ", 2)) {
 		uiFormat(Network, Cold, tagTime(msg), "\3%d-\3\t%s", Gray, &line[2]);
 	} else {
@@ -316,7 +316,7 @@ static void handleErrorNoMOTD(struct Message *msg) {
 
 static void handleReplyHelp(struct Message *msg) {
 	require(msg, false, 3);
-	urlScan(Network, msg->nick, msg->params[2]);
+	urlScan(Network, NULL, msg->params[2]);
 	uiWrite(Network, Warm, tagTime(msg), msg->params[2]);
 }