diff options
Diffstat (limited to 'modules/chanserv/cs_set.cpp')
-rw-r--r-- | modules/chanserv/cs_set.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/chanserv/cs_set.cpp b/modules/chanserv/cs_set.cpp index 0fb18cdaa..c2298e68a 100644 --- a/modules/chanserv/cs_set.cpp +++ b/modules/chanserv/cs_set.cpp @@ -1057,7 +1057,7 @@ class CSSet final { SerializableExtensibleItem<bool>::ExtensibleSerialize(e, s, data); - if (s->GetSerializableType()->GetName() != "ChannelInfo") + if (s->GetSerializableType()->GetName() != CHANNELINFO_TYPE) return; const ChannelInfo *ci = anope_dynamic_static_cast<const ChannelInfo *>(s); @@ -1077,7 +1077,7 @@ class CSSet final { SerializableExtensibleItem<bool>::ExtensibleUnserialize(e, s, data); - if (s->GetSerializableType()->GetName() != "ChannelInfo") + if (s->GetSerializableType()->GetName() != CHANNELINFO_TYPE) return; ChannelInfo *ci = anope_dynamic_static_cast<ChannelInfo *>(s); |