about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-10-09 19:15:25 -0400
committerJune McEnroe <june@causal.agency>2020-10-09 19:15:25 -0400
commit1cc61723c9cd728654676a9d84905b205b5b0e4a (patch)
tree6586a50ee8b4d9a2a513600da5568c15b2fea92a
parentFactor out styleStrip (diff)
downloadcatgirl-1cc61723c9cd728654676a9d84905b205b5b0e4a.tar.gz
catgirl-1cc61723c9cd728654676a9d84905b205b5b0e4a.zip
Strip formatting from URLs
Notably this fixes opening URLs from litterbox queries where part of the
URL is highlighted.
Diffstat (limited to '')
-rw-r--r--url.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/url.c b/url.c
index 3f7f512..53fe271 100644
--- a/url.c
+++ b/url.c
@@ -86,14 +86,19 @@ static void push(uint id, const char *nick, const char *str, size_t len) {
 	struct URL *url = &ring.urls[ring.len++ % Cap];
 	free(url->nick);
 	free(url->url);
+
 	url->id = id;
 	url->nick = NULL;
 	if (nick) {
 		url->nick = strdup(nick);
 		if (!url->nick) err(EX_OSERR, "strdup");
 	}
-	url->url = strndup(str, len);
-	if (!url->url) err(EX_OSERR, "strndup");
+	url->url = malloc(len + 1);
+	if (!url->url) err(EX_OSERR, "malloc");
+
+	char buf[1024];
+	snprintf(buf, sizeof(buf), "%.*s", (int)len, str);
+	styleStrip(&(struct Cat) { url->url, len + 1, 0 }, buf);
 }
 
 void urlScan(uint id, const char *nick, const char *mesg) {
d> 2018-12-02Add -r option for realnameJune McEnroe 2018-12-02Send automated messages to TagStatus with UIColdJune McEnroe 2018-12-02Various man page tweaks and editsJune McEnroe 2018-12-02Fix UI resume on /urlJune McEnroe 2018-12-02Add sandman.m to READMEJune McEnroe 2018-12-01Crudely handle reconnecting after suspendJune McEnroe 2018-12-01Fix sandman hangJune McEnroe 2018-12-01Use sigaction in sandmanJune McEnroe 2018-11-30Handle signals consistently in the event loopJune McEnroe 2018-11-30Separate ircConnect and ircDisconnectJune McEnroe 2018-11-30Measure length of log timestamp more consistentlyJune McEnroe 2018-11-30Reformat sandman Objective-C codeJune McEnroe 2018-11-30Ignore sandmanJune McEnroe 2018-11-30Add sandmanJune McEnroe 2018-11-29Strip timestamps from log replayJune McEnroe 2018-11-29Add basic log replayJune McEnroe 2018-11-29Show unread count in term titleJune McEnroe 2018-11-29Handle no such nick errorJune McEnroe 2018-11-29Add /whoisJune McEnroe 2018-11-29Set LIBRESSL_PREFIX in Darwin.mkJune McEnroe 2018-11-28Add NetBSD.mkJune McEnroe 2018-11-28Make use of config.mk and add Darwin.mkJune McEnroe