1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 13:43:14 +02:00

Update for the 1205 channel METADATA syntax.

This commit is contained in:
Peter Powell
2019-06-13 11:58:46 +01:00
committed by P. Powell
parent 78bac905c2
commit 470d4d1a97
+1 -1
View File
@@ -1776,7 +1776,7 @@ class ProtoInspIRCd3 : public Module
void SendChannelMetadata(Channel *c, const Anope::string &metadataname, const Anope::string &value)
{
UplinkSocket::Message(Me) << "METADATA " << c->name << " " << metadataname << " :" << value;
UplinkSocket::Message(Me) << "METADATA " << c->name << " " << c->creation_time << " " << metadataname << " :" << value;
}
public: