diff options
author | June McEnroe <june@causal.agency> | 2018-08-11 12:50:56 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-11 12:50:56 -0400 |
commit | fec5e51d78ac3b8fc747b9b1dabe8cf14ceaf306 (patch) | |
tree | 0f02d35ece9769819b0449bd0d3b378b87a51964 | |
parent | Fix commented out error handling (diff) | |
download | catgirl-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 '')
-rw-r--r-- | handle.c | 1 |
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; |