From 63b1f9ce880cd06fdb5cddea85cb9a4cf293ab6f Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 8 Oct 2010 16:16:11 -0400 Subject: [PATCH] Do not join our clients to enforce TS if they are already in the channel --- src/channels.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels.cpp b/src/channels.cpp index 756140cef..4ba9049a9 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -179,7 +179,7 @@ void Channel::JoinUser(User *user) if (update_ts && user->server != Me) { /* Send the updated TS */ - if (!this->ci->bi || !this->FindUser(this->ci->bi)) + if (!this->FindUser(whosends(this->ci))) { whosends(this->ci)->Join(this, update_ts); whosends(this->ci)->Part(this);