1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fix history timestamp

Fixes https://github.com/profanity-im/profanity/issues/1423

Oldest stanza is fetched like before but now the timestamp is generated by creating date_time_from_iso8601 and then to_local, instead of trusting that the timestamp is in utc.
The procedure previously was stamp = time_val_from_iso8601() then date_time = date_time_from_utc(stamp) then local_date_time = to_local(date_time)
This commit is contained in:
MarcoPolo-PasTonMolo 2021-10-04 23:11:12 +03:00 committed by Michael Vetter
parent 02e7cc029c
commit 97551aa131

View File

@ -1180,9 +1180,9 @@ _stanza_get_delay_timestamp_xep0203(xmpp_stanza_t* const delay_stanza)
if (stamp && (g_time_val_from_iso8601(stamp, &utc_stamp))) {
GDateTime* utc_datetime = g_date_time_new_from_timeval_utc(&utc_stamp);
GDateTime* local_datetime = g_date_time_to_local(utc_datetime);
g_date_time_unref(utc_datetime);
GDateTime* datetime = g_date_time_new_from_iso8601(stamp, NULL);
GDateTime* local_datetime = g_date_time_to_local(datetime);
g_date_time_unref(datetime);
return local_datetime;
}
@ -1201,9 +1201,9 @@ _stanza_get_delay_timestamp_xep0091(xmpp_stanza_t* const x_stanza)
const char* stamp = xmpp_stanza_get_attribute(x_stanza, STANZA_ATTR_STAMP);
if (stamp && (g_time_val_from_iso8601(stamp, &utc_stamp))) {
GDateTime* utc_datetime = g_date_time_new_from_timeval_utc(&utc_stamp);
GDateTime* local_datetime = g_date_time_to_local(utc_datetime);
g_date_time_unref(utc_datetime);
GDateTime* datetime = g_date_time_new_from_iso8601(stamp, NULL);
GDateTime* local_datetime = g_date_time_to_local(datetime);
g_date_time_unref(datetime);
return local_datetime;
}