summary refs log tree commit diff
path: root/handle.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-11 12:50:56 -0400
committerJune McEnroe <june@causal.agency>2018-08-11 12:50:56 -0400
commitfec5e51d78ac3b8fc747b9b1dabe8cf14ceaf306 (patch)
tree0f02d35ece9769819b0449bd0d3b378b87a51964 /handle.c
parentFix commented out error handling (diff)
downloadcatgirl-fec5e51d78ac3b8fc747b9b1dabe8cf14ceaf306.tar.gz
catgirl-fec5e51d78ac3b8fc747b9b1dabe8cf14ceaf306.zip
Fix isSelf user checking
Other users with the same username are not self.

The fun effect of this was that I could tab-complete "june_" but not
"june".
Diffstat (limited to 'handle.c')
-rw-r--r--handle.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index faf44aa..29b354c 100644
--- a/handle.c
+++ b/handle.c
@@ -76,7 +76,6 @@ static void shift(
 
 static bool isSelf(const char *nick, const char *user) {
 	if (!user) return false;
-	if (!strcmp(user, self.user)) return true;
 	if (!strcmp(nick, self.nick)) {
 		if (strcmp(user, self.user)) selfUser(user);
 		return true;
a>June McEnroe That ugly sort map though. 2020-11-22Day 4June McEnroe 2020-11-22Day 3, part 2June McEnroe I am super surprised that worked on the first try. 2020-11-22Day 3, clean upJune McEnroe 2020-11-22Day 3June McEnroe This is fucking awful and I'm angry. 2020-11-22Day 2, part 2June McEnroe 2020-11-22Day 2June McEnroe 2020-11-22Day 1, part 2June McEnroe 2020-11-22Day 1June McEnroe 2020-11-22Move to 2016 directoryJune McEnroe