1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 00:33:13 +02:00

relay: send UTC time in irc backlog (when server capability "server-time" is enabled)

This commit is contained in:
Sebastien Helleu
2013-01-01 15:13:05 +01:00
parent e2bf63cca1
commit 4ebd300340
+2 -1
View File
@@ -598,7 +598,6 @@ relay_irc_get_line_info (struct t_relay_client *client,
*message = NULL;
msg_date = weechat_hdata_time (hdata_line_data, line_data, "date");
tm = localtime (&msg_date);
num_tags = weechat_hdata_get_var_array_size (hdata_line_data, line_data,
"tags_array");
ptr_message = weechat_hdata_pointer (hdata_line_data, line_data, "message");
@@ -694,6 +693,7 @@ relay_irc_get_line_info (struct t_relay_client *client,
if (!(RELAY_IRC_DATA(client, server_capabilities) & (1 << RELAY_IRC_CAPAB_SERVER_TIME))
&& time_format && time_format[0])
{
tm = localtime (&msg_date);
strftime (str_time, sizeof (str_time), time_format, tm);
length = strlen (str_time) + strlen (pos) + 1;
*message = malloc (length);
@@ -726,6 +726,7 @@ relay_irc_get_line_info (struct t_relay_client *client,
if (tags
&& (RELAY_IRC_DATA(client, server_capabilities) & (1 << RELAY_IRC_CAPAB_SERVER_TIME)))
{
tm = gmtime (&msg_date);
strftime (str_time, sizeof (str_time), "%Y-%m-%dT%H:%M:%S", tm);
snprintf (str_tag, sizeof (str_tag), "@time=%s.000Z ", str_time);
*tags = strdup (str_tag);