diff options
author | C. McEnroe | 2020-02-07 23:44:03 -0500 |
---|---|---|
committer | C. McEnroe | 2020-02-07 23:44:03 -0500 |
commit | 8b7cc1a0ed95e8a3ff413fa77eb12a3dca7fccb4 (patch) | |
tree | e43cd273a49365fefd2d3437da811bca350a56f2 /handle.c | |
parent | d314523b90f41cfdbca867ad0ad48f2f68f66c58 (diff) |
Clear completion for ID on self-part
Diffstat (limited to 'handle.c')
-rw-r--r-- | handle.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/handle.c b/handle.c index 4faabba..b73d200 100644 --- a/handle.c +++ b/handle.c @@ -212,6 +212,9 @@ static void handleJoin(struct Message *msg) { static void handlePart(struct Message *msg) { require(msg, true, 1); size_t id = idFor(msg->params[0]); + if (self.nick && !strcmp(msg->nick, self.nick)) { + completeClear(id); + } completeRemove(id, msg->nick); uiFormat( id, Cold, tagTime(msg), |