X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spanningtree%2Fftopic.cpp;h=2ed813b0f8cdb7f4f4e630cad987400181adeaee;hb=db7a49b071134cf3deadf05ce84fa6c7c46d80bf;hp=e18187087fa8fa1320b6c9d589b90a6e15b1d21a;hpb=7d7250484c352c13830e63ae41ee8faae40a9bd5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/ftopic.cpp b/src/modules/m_spanningtree/ftopic.cpp index e18187087..2ed813b0f 100644 --- a/src/modules/m_spanningtree/ftopic.cpp +++ b/src/modules/m_spanningtree/ftopic.cpp @@ -27,23 +27,16 @@ bool TreeSocket::ForceTopic(const std::string &source, std::deque & if (params.size() != 4) return true; time_t ts = atoi(params[1].c_str()); - std::string nsource = source; Channel* c = this->Instance->FindChan(params[0]); if (c) { if ((ts >= c->topicset) || (c->topic.empty())) { - std::string oldtopic = c->topic; - c->topic.assign(params[3], 0, Instance->Config->Limits.MaxTopic); - c->setby.assign(params[2], 0, 127); - c->topicset = ts; - /* if the topic text is the same as the current topic, - * dont bother to send the TOPIC command out, just silently - * update the set time and set nick. - */ - if (oldtopic != params[3]) + if (c->topic != params[3]) { User* user = this->Instance->FindNick(source); + // Update topic only when it differs from current topic + c->topic.assign(params[3], 0, Instance->Config->Limits.MaxTopic); if (!user) { c->WriteChannelWithServ(Instance->Config->ServerName, "TOPIC %s :%s", c->name.c_str(), c->topic.c_str()); @@ -51,17 +44,16 @@ bool TreeSocket::ForceTopic(const std::string &source, std::deque & else { c->WriteChannel(user, "TOPIC %s :%s", c->name.c_str(), c->topic.c_str()); - nsource = user->server; } } + // Always update setter and settime. + c->setby.assign(params[2], 0, 127); + c->topicset = ts; + /* all done, send it on its way */ params[3] = ":" + params[3]; - User* u = Instance->FindNick(nsource); - if (u) - Utils->DoOneToAllButSender(u->uuid,"FTOPIC",params,u->server); - else - Utils->DoOneToAllButSender(source,"FTOPIC",params,nsource); + Utils->DoOneToAllButSender(source,"FTOPIC",params,source); } }