aboutsummaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index bc2970a7d..d66d2e8ae 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -391,8 +391,8 @@ void ModuleManager::DoSafeUnload(Module* mod)
std::vector<ExtensionItem*> items;
ServerInstance->Extensions.BeginUnregister(modfind->second, items);
/* Give the module a chance to tidy out all its metadata */
- const chan_hash& chans = ServerInstance->GetChans();
- for (chan_hash::const_iterator c = chans.begin(); c != chans.end(); )
+ const ChannelMap& chans = ServerInstance->Channels.GetChans();
+ for (ChannelMap::const_iterator c = chans.begin(); c != chans.end(); )
{
Channel* chan = c->second;
++c;