summaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-12-02 02:01:39 -0500
committerAdam <Adam@anope.org>2013-12-02 02:01:39 -0500
commit96af354ad55e439be71b82077dd6a411b4746bbb (patch)
tree7b0a6d5b524f14535f2bff20ca349d5e9b26742d /src/init.cpp
parentb5966cf99e2b1ffd578e0aa371803cb17013956f (diff)
Send channel topics on initial burst, sync chanels after db load, and try to after unserializing persist on
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index fae776f9b..489f3b264 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -477,6 +477,9 @@ void Anope::Init(int ac, char **av)
static_cast<void>(MOD_RESULT);
Log() << "Databases loaded";
+ for (channel_map::const_iterator it = ChannelList.begin(), it_end = ChannelList.end(); it != it_end; ++it)
+ it->second->Sync();
+
Serialize::CheckTypes();
}