diff options
| author | 2016-04-11 15:53:01 +0200 | |
|---|---|---|
| committer | 2016-04-11 15:53:01 +0200 | |
| commit | 2706a993b3f8ee52e2728047fad6a56f7e3cf405 (patch) | |
| tree | 30d99f78630372bbe630fcf47f2f32fc8891fbe9 /src/modules/m_topiclock.cpp | |
| parent | Merge pull request #1168 from SaberUK/master+fix-configure-cache-parser (diff) | |
| download | inspircd++-2706a993b3f8ee52e2728047fad6a56f7e3cf405.tar.gz inspircd++-2706a993b3f8ee52e2728047fad6a56f7e3cf405.tar.bz2 inspircd++-2706a993b3f8ee52e2728047fad6a56f7e3cf405.zip | |
Refactor topic setting logic to go through Channel::SetTopic() in all cases
- Pass topic set time and optionally the setter to SetTopic()
- Don't do anything if the topic is changed by a local user to what it is currently
Diffstat (limited to 'src/modules/m_topiclock.cpp')
| -rw-r--r-- | src/modules/m_topiclock.cpp | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/src/modules/m_topiclock.cpp b/src/modules/m_topiclock.cpp index eba2b33f0..340fbfdec 100644 --- a/src/modules/m_topiclock.cpp +++ b/src/modules/m_topiclock.cpp @@ -49,32 +49,13 @@ class CommandSVSTOPIC : public Command return CMD_INVALID; } - std::string newtopic; - newtopic.assign(parameters[3], 0, ServerInstance->Config->Limits.MaxTopic); - bool topics_differ = (chan->topic != newtopic); - if ((topics_differ) || (chan->topicset != topicts) || (chan->setby != parameters[2])) - { - // Update when any parameter differs - chan->topicset = topicts; - chan->setby.assign(parameters[2], 0, 127); - chan->topic = newtopic; - // Send TOPIC to clients only if the actual topic has changed, be silent otherwise - if (topics_differ) - chan->WriteChannel(user, "TOPIC %s :%s", chan->name.c_str(), chan->topic.c_str()); - } + chan->SetTopic(user, parameters[3], topicts, ¶meters[2]); } else { // 1 parameter version, nuke the topic - bool topic_empty = chan->topic.empty(); - if (!topic_empty || !chan->setby.empty()) - { - chan->topicset = 0; - chan->setby.clear(); - chan->topic.clear(); - if (!topic_empty) - chan->WriteChannel(user, "TOPIC %s :", chan->name.c_str()); - } + chan->SetTopic(user, std::string(), 0); + chan->setby.clear(); } return CMD_SUCCESS; |
