diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-06-17 17:53:39 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-06-17 17:54:49 +0200 |
commit | d2e189102b643f38418f3caf065dbb91f2ce4266 (patch) | |
tree | 43968ec9501a525107e41736cbe39839aec08350 /src/modules | |
parent | f960a97cc6b509c756a20d892609825c67c2fc43 (diff) |
Fix pending invites not being removed when a channel was deleted or had its TS lowered
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index 50775be1d..929ace474 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -105,6 +105,7 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src // while the name is equal in case-insensitive compare, it might differ in case; use the remote version chan->name = channel; chan->age = TS; + chan->ClearInvites(); param_list.push_back(channel); this->RemoveStatus(ServerInstance->FakeClient, param_list); } |