summaryrefslogtreecommitdiff
path: root/src/xmpp/xmpp_component.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-04-24 19:19:06 +0200
committerlouiz’ <louiz@louiz.org>2018-04-24 20:25:40 +0200
commit61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24 (patch)
treef1da873798506627587ef7cdce23062d556b454a /src/xmpp/xmpp_component.cpp
parenta90f196a1ce779d502baf0aadff6e6917fec8a02 (diff)
downloadbiboumi-61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24.tar.gz
biboumi-61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24.tar.bz2
biboumi-61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24.tar.xz
biboumi-61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24.zip
Revert "Use a different Date data type"
This reverts commit 857c7d3972a03cbeebf730d99b924d3710dee6a0.
Diffstat (limited to 'src/xmpp/xmpp_component.cpp')
-rw-r--r--src/xmpp/xmpp_component.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/xmpp_component.cpp b/src/xmpp/xmpp_component.cpp
index bec88ea..b3d925e 100644
--- a/src/xmpp/xmpp_component.cpp
+++ b/src/xmpp/xmpp_component.cpp
@@ -399,7 +399,7 @@ void XmppComponent::send_muc_message(const std::string& muc_name, const std::str
}
#ifdef USE_DATABASE
-void XmppComponent::send_history_message(const std::string& muc_name, const std::string& nick, const std::string& body_txt, const std::string& jid_to, const DateTime& timestamp)
+void XmppComponent::send_history_message(const std::string& muc_name, const std::string& nick, const std::string& body_txt, const std::string& jid_to, Database::time_point::rep timestamp)
{
Stanza message("message");
message["to"] = jid_to;
@@ -417,7 +417,7 @@ void XmppComponent::send_history_message(const std::string& muc_name, const std:
XmlSubNode delay(message, "delay");
delay["xmlns"] = DELAY_NS;
delay["from"] = muc_name + "@" + this->served_hostname;
- delay["stamp"] = timestamp.to_string();
+ delay["stamp"] = utils::to_string(timestamp);
}
this->send_stanza(message);