aboutsummaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index b1d2e9822..983b89177 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -34,7 +34,8 @@ namespace
}
Channel::Channel(const std::string &cname, time_t ts)
- : name(cname)
+ : Extensible(ExtensionType::CHANNEL)
+ , name(cname)
, age(ts)
{
if (!ServerInstance->Channels.GetChans().emplace(cname, this).second)