diff options
author | Curtis McEnroe | 2018-08-11 12:50:56 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-08-11 12:50:56 -0400 |
commit | fec5e51d78ac3b8fc747b9b1dabe8cf14ceaf306 (patch) | |
tree | 0f02d35ece9769819b0449bd0d3b378b87a51964 /handle.c | |
parent | a1bb27ae01b1b77c4ca18e5edd727b203c3c004e (diff) |
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.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; |