about summary refs log tree commit diff
path: root/tag.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-25 16:12:41 -0500
committerJune McEnroe <june@causal.agency>2019-02-25 16:12:41 -0500
commitd85c1c3f9649608bc003d66a6e9d2c696188bf19 (patch)
tree76f5b3f4ee1a96030a9d5073b1922503b8c0d090 /tag.c
parentAdd color to tags (diff)
downloadcatgirl-d85c1c3f9649608bc003d66a6e9d2c696188bf19.tar.gz
catgirl-d85c1c3f9649608bc003d66a6e9d2c696188bf19.zip
Update tag colors
This kind of incurs a lot of writes usually for no reason. The only
place this matters is when cold-opening a /query. I wonder if there's a
better way to do that.
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index 13f59d0..649ac49 100644
--- a/tag.c
+++ b/tag.c
@@ -45,11 +45,15 @@ struct Tag tagFind(const char *name) {
 
 struct Tag tagFor(const char *name, enum IRCColor color) {
 	struct Tag tag = tagFind(name);
-	if (tag.id != TagNone.id) return tag;
+	if (tag.id != TagNone.id) {
+		tag.color = tags.color[tag.id] = color;
+		return tag;
+	}
 	if (tags.len == TagsLen) return TagStatus;
+
 	size_t id = tags.len++;
 	tags.name[id] = strdup(name);
-	if (!tags.name[id]) err(EX_OSERR, "strdup");
 	tags.color[id] = color;
+	if (!tags.name[id]) err(EX_OSERR, "strdup");
 	return (struct Tag) { id, tags.name[id], color };
 }